this repo has no description

auto completion zsh

+16 -1
+16 -1
.zshrc
··· 62 62 # see 'man strftime' for details. 63 63 # HIST_STAMPS="mm/dd/yyyy" 64 64 65 + # initialize autocompletion 66 + autoload -U compinit 67 + compinit 68 + 69 + # history setup 70 + setopt SHARE_HISTORY 71 + HISTFILE=$HOME/.zhistory 72 + SAVEHIST=1000 73 + HISTSIZE=999 74 + setopt HIST_EXPIRE_DUPS_FIRST 75 + 76 + # history setup 77 + bindkey '\e[A' history-search-backward 78 + bindkey '\e[B' history-search-forward 79 + 65 80 # Would you like to use another custom folder than $ZSH/custom? 66 81 # ZSH_CUSTOM=/path/to/new-custom-folder 67 82 ··· 70 85 # Custom plugins may be added to $ZSH_CUSTOM/plugins/ 71 86 # Example format: plugins=(rails git textmate ruby lighthouse) 72 87 # Add wisely, as too many plugins slow down shell startup. 73 - plugins=(git) 88 + plugins=(git zsh-autosuggestions) 74 89 75 90 source $ZSH/oh-my-zsh.sh 76 91