1
0
mirror of https://github.com/akelge/vim synced 2025-08-17 16:08:50 +00:00

Changed all conf file to .zsh extension

This commit is contained in:
2013-01-17 11:15:16 +00:00
parent a6d5778a47
commit d9013ec2da
16 changed files with 3 additions and 2 deletions

21
zsh/zsh.d/20-complete.zsh Normal file
View File

@ -0,0 +1,21 @@
#######################################################################################
# Start autocomplete
autoload -U compinit; compinit -u
autoload -U compsys;
compctl -g "*(-/)" + -g ".*(-/)" cd
# allow approximate
zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle ':completion:*:approximate:*' max-errors 1 numeric
# # tab completion for PID :D
zstyle ':completion:*:*:kill:*' menu yes select
zstyle ':completion:*:kill:*' force-list always
# # cd not select parent dir
zstyle ':completion:*:cd:*' ignore-parents parent pwd
# compctl -g "*(-/)" + -g ".*(-/)" cd
#
# vim: set ts=4 sw=4 tw=0 ft=zsh :