- Stop sourcing /etc/bash.bashrc which causes problems with ls, add

a call to manually source /etc/zsh.zshrc.local if available.

OBS-URL: https://build.opensuse.org/package/show/shells/zsh?expand=0&rev=219
This commit is contained in:
Ismail Dönmez 2020-04-08 06:08:52 +00:00 committed by Git OBS Bridge
parent fe5be78e62
commit 505177d58a
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Apr 8 06:04:06 UTC 2020 - Ismail Dönmez <idonmez@suse.com>
- Stop sourcing /etc/bash.bashrc which causes problems with ls, add
a call to manually source /etc/zsh.zshrc.local if available.
-------------------------------------------------------------------
Tue Mar 10 08:38:10 UTC 2020 - Martin Liška <mliska@suse.cz>

7
zshrc
View File

@ -1,7 +1,3 @@
# read bash.bashrc first for some features we dont want
# to re-implement here
source /etc/bash.bashrc
# Custom completion support via /etc/zsh_completion.d
fpath=( $fpath /etc/zsh_completion.d )
@ -250,3 +246,6 @@ if [[ "$ZSHEDIT" == "emacs" ]] then
bindkey "^^[[A" up-history
bindkey "^^[[B" down-history
fi
# Read custom system-wide config if exists
test -s /etc/zsh.zshrc.local && . /etc/zsh.zshrc.local