Created
January 4, 2015 20:50
-
-
Save gaving/40d60a37a3a6cf2ebd8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source ~/Sandbox/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
source ~/Sandbox/zsh-history-substring-search/zsh-history-substring-search.zsh | |
source ~/Sandbox/zsh-autosuggestions/autosuggestions.zsh | |
fpath=(~/Sandbox/zsh-completions/src $fpath) | |
bindkey '^[[A' history-substring-search-up | |
bindkey '^[[B' history-substring-search-down | |
zle-line-init() { | |
zle autosuggest-start | |
} | |
zle -N zle-line-init | |
bindkey '^t' vi-forward-blank-word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment