diff options
-rw-r--r-- | gitconfig | 2 | ||||
-rw-r--r-- | zshrc | 9 |
2 files changed, 11 insertions, 0 deletions
@@ -25,3 +25,5 @@ excludesfile = ~/.gitignore #[push] # default = simple +[push] + default = simple @@ -368,6 +368,15 @@ function init-prompt() { safe-restore-ssh-agent-socket init-prompt +# improve vim setup if possible +[ -d "$HOME/.vim/plugin" ] || mkdir -v -p "$HOME/.vim/plugin" +( + cd "$HOME/.vim/plugin" + for p in detectindent minibufexpl taglist; do + ! [ -e "$p.vim" ] && [ -e /usr/share/vim-scripts/plugin/"$p".vim ] && ln -v -s /usr/share/vim-scripts/plugin/"$p".vim + done +) + [ -x /usr/bin/ddate ] && /usr/bin/ddate && echo if [ -x /usr/games/fortune ]; then FORTUNE_PATH="" |