config/zsh: Clean up external sourcings

This commit is contained in:
xerus2000 2020-10-12 22:19:12 +02:00
parent 0986fa0d73
commit 2d7d0c1fd7
2 changed files with 2 additions and 23 deletions

View File

@ -173,19 +173,11 @@ for file in $CONFIG_SHELLS/*; do source $file; done
# AUTOMATICALLY ADDED SHIT
if [ -d "~/.sdkman" ]; then
export SDKMAN_DIR="~/.sdkman"
[[ -s "~/.sdkman/bin/sdkman-init.sh" ]] && source "~/.sdkman/bin/sdkman-init.sh"
fi
# added by travis gem
[ -f /home/janek/.travis/travis.sh ] && source /home/janek/.travis/travis.sh
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# To customize prompt, run `p10k configure` or edit .p10k.zsh.
[[ ! -f $CONFIG_ZSH/.p10k.zsh ]] || source $CONFIG_ZSH/.p10k.zsh
test -f $CONFIG_ZSH/.p10k.zsh && source $CONFIG_ZSH/.p10k.zsh
[ -f $XDG_DATA_HOME/shell/.fzf.zsh ] && source $XDG_DATA_HOME/shell/.fzf.zsh
test -d /usr/share/fzf && source /usr/share/fzf/key-bindings.zsh && source /usr/share/fzf/completion.zsh

View File

@ -1,13 +0,0 @@
# Setup fzf
# ---------
if [[ ! "$PATH" == */opt/fzf/bin* ]]; then
export PATH="${PATH:+${PATH}:}/opt/fzf/bin"
fi
# Auto-completion
# ---------------
[[ $- == *i* ]] && source "/opt/fzf/shell/completion.zsh" 2> /dev/null
# Key bindings
# ------------
source "/opt/fzf/shell/key-bindings.zsh"