Esclusa importazione plugin per CentOS.
This commit is contained in:
parent
5fa69f6396
commit
76d3317ef4
7
zshrc
7
zshrc
@ -40,6 +40,11 @@ fi
|
||||
|
||||
# Plugins
|
||||
for plugin in `find $DOTFILES/zsh/plugins -type f -iname \*.plugin.zsh -print`; do
|
||||
if [ -f /etc/redhat-release ]; then
|
||||
if [ "${plugin}" != 'fzf.plugin.zsh' ]; then
|
||||
source $plugin
|
||||
fi
|
||||
fi
|
||||
source $plugin
|
||||
done
|
||||
|
||||
@ -47,7 +52,7 @@ done
|
||||
export EDITOR="/usr/bin/vim"
|
||||
|
||||
# FZF default options
|
||||
if [ -x `which fzf` ]; then
|
||||
if [ -x `which fzf 2>/dev/null` ]; then
|
||||
export FZF_DEFAULT_OPTS="--multi --no-mouse --ansi --color=dark"
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user