nix-config/tag-zsh/zshrc

20 lines
507 B
Bash
Raw Normal View History

2016-10-05 07:20:23 +01:00
# If you come from bash you might have to change your $PATH.
2019-03-22 14:35:32 +00:00
export PATH=$PATH:bin
2019-09-04 22:28:07 +01:00
export PATH=$PATH:node_modules/.bin
2019-03-22 14:35:32 +00:00
export PATH=$PATH:vendor/bin
2019-09-04 22:28:07 +01:00
export PATH=$PATH:$HOME/.composer/vendor/bin
export PATH=$PATH:/usr/local/sbin
2019-03-22 14:35:32 +00:00
export PATH=$PATH:"$HOME/.platformsh/bin"
2019-10-11 20:16:10 +01:00
export PATH="$HOME/.bin:$PATH"
2016-10-05 07:20:23 +01:00
2020-01-14 14:57:48 +00:00
for zsh_source in $HOME/.zsh/configs/*.zsh; do
2019-09-04 22:28:39 +01:00
source $zsh_source
done
2019-10-06 01:36:38 +01:00
2020-01-15 08:25:21 +00:00
for function in $HOME/.zsh/functions/*; do
source $function
done
2019-10-06 01:36:38 +01:00
# Local config
[[ -f ~/.zshrc.local ]] && source ~/.zshrc.local