ddribin (owner)

Revisions

gist: 221454 Download_button fork
public
Public Clone URL: git://gist.github.com/221454.git
Embed All Files: show embed
.zshrc #
1
2
3
4
5
6
7
8
# I like to complete on everything typed so far, not just the first
# word. This is more like tcsh, too. :)
bindkey "^[p" history-beginning-search-backward
bindkey "^[n" history-beginning-search-forward
 
# Make completion case insensitive
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'