Add sourcing of local ignored file

This commit is contained in:
Kenneth Benzie 2023-06-21 22:05:57 +01:00
parent e30f86800d
commit 0c4cd8880b
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
# Ignore all plugin files in subdirectories
*/
local

1
zshrc
View File

@ -185,6 +185,7 @@ frequent-directory Sandbox="$HOME/Sandbox"
# Load work related config
[ -f ~/.config/work/zshrc ] && source ~/.config/work/zshrc
[ -f ~/.config/private/zshrc ] && source ~/.config/private/zshrc
[ -f ~/.config/zsh/local ] && source ~/.config/zsh/local
# Aliases
alias grep='grep --color=always'