1
0
Fork 0

Add external zsh folder for specifics zsh aliases

This commit is contained in:
Rodolphe Houdas 2020-08-25 09:23:25 +02:00
parent d269db0ee6
commit e2d329303d
1 changed files with 6 additions and 4 deletions

View File

@ -9,7 +9,7 @@ export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quo
# Custom functions
optirun() {
__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia "$@"
__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia "$@"
}
# If you come from bash you might have to change your $PATH.
@ -75,7 +75,7 @@ DISABLE_AUTO_UPDATE="true"
# HIST_STAMPS="mm/dd/yyyy"
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
ZSH_CUSTOM=~/.zsh
# Which plugins would you like to load?
# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
@ -113,8 +113,10 @@ source $ZSH/oh-my-zsh.sh
# alias ohmyzsh="mate ~/.oh-my-zsh"
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
source /etc/profile.d/vte.sh
source /etc/profile.d/vte.sh
fi
# pyenv
eval "$(pyenv init -)"
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi