12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- if [ -f ~/.zshrc.local ]; then
- source ~/.zshrc.local
- fi
- if [ -h ~/.antigen.zsh ]
- then
- save_aliases=$(alias -L)
- source ~/.antigen.zsh
-
- antigen use oh-my-zsh
-
- antigen bundle git
- antigen bundle heroku
- antigen bundle pip
- antigen bundle lein
- antigen bundle command-not-found
- export NVM_LAZY_LOAD=true
- export NVM_NO_USE=true
- antigen bundle lukechilds/zsh-nvm
-
- antigen bundle zsh-users/zsh-syntax-highlighting
- antigen bundle zsh-users/zsh-autosuggestions
-
- antigen theme simple
-
- antigen apply
- unalias -m '*'
- eval $save_aliases; unset save_aliases
- fi
- bindkey '^ ' autosuggest-accept
- HISTFILE=~/.histfile
- HISTSIZE=10000
- SAVEHIST=10000
- setopt -o sharehistory
- setopt HIST_IGNORE_DUPS
- setopt HIST_IGNORE_ALL_DUPS
- setopt appendhistory autocd extendedglob nomatch
- WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
- bindkey "^[OH" beginning-of-line
- bindkey "^[[H" beginning-of-line
- bindkey "^[OF" end-of-line
- bindkey "^[[F" end-of-line
- bindkey "^s" history-incremental-search-forward
- bindkey ";5C" forward-word
- bindkey ";5D" backward-word
- function cd {
- builtin cd "$@" && ls -F
- }
- function sl_func() {
-
-
- LEN=$(ls "$@" |sort -nr|head -1|wc -c)
- ls "$@" | rev | while read -r line
- do
- builtin printf "%${LEN}.${LEN}s\\n" "$line" | sed 's/^\(\s\+\)\(\S\+\)/\2\1/'
- done
- }
- alias sl=sl_func
|