瀏覽代碼

update zsh related code

pull/1/head
10sr 11 年之前
父節點
當前提交
56a771c6f6
共有 1 個檔案被更改,包括 15 行新增4 行删除
  1. +15
    -4
      shrc

+ 15
- 4
shrc 查看文件

@@ -80,8 +80,8 @@ install -d "$__homevar"

alias isinteractive=false
__match "$-" i >/dev/null && alias isinteractive=true
alias issourced=true
expr "$0" : "^.*shrc$" >/dev/null && alias issourced=false # executed
# alias issourced=true
# expr "$0" : "^.*shrc$" >/dev/null && alias issourced=false # executed

# Basic idea is: if PATH value is destroyed set again.
alias __firstload=false
@@ -102,6 +102,15 @@ then
__safe_add_path_r "/c/mingw/bin"
__safe_add_path_r "/c/mingw/msys/1.0/bin"

isdarwin && {
# macports coreutils
__safe_add_path_l "/opt/local/bin"
__safe_add_path_l "/opt/local/sbin"
__safe_add_path_l "/opt/local/libexec/gnubin"
__safe_add_path_l \
"/opt/local/Library/Frameworks/Python.framework/Versions/3.2/bin"
}

test -f "${__dotdir}/rc.py" && export PYTHONSTARTUP="${__dotdir}/rc.py"

install -d "$HOME/.local/lib/python/site-packages"
@@ -216,7 +225,7 @@ fi

#######################
# If not running interactively, don't do anything
issourced || exit
# issourced || exit
isinteractive || return

######################
@@ -918,10 +927,12 @@ dpaste(){
if inzsh
then
# http://zsh.sourceforge.net/Guide/zshguide06.html#l147
autoload -U compinit; compinit
autoload compinit; compinit
unsetopt auto_menu
setopt bash_auto_list
bindkey -e
autoload colors; colors
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
fi

######################################


Loading…
取消
儲存