- Add custom completion support via /etc/zsh_completion.d

- Fix build with new ncurses library

OBS-URL: https://build.opensuse.org/package/show/shells/zsh?expand=0&rev=77
This commit is contained in:
Ismail Dönmez
2011-11-24 10:22:24 +00:00
committed by Git OBS Bridge
parent 22e27d6c15
commit cb7b2c23ab
3 changed files with 26 additions and 4 deletions

5
zshrc
View File

@@ -2,6 +2,11 @@
# to re-implement here
source /etc/bash.bashrc
# Custom completion support via /etc/zsh_completion.d
for i in /etc/zsh_completion.d/*(N); do
test -r $i && . $i
done
# zsh line editing
: ${ZSHEDIT:="emacs"}
: ${TERM:=linux}