diff options
author | Matt Singleton <matt@xcolour.net> | 2021-02-09 17:25:01 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2021-02-09 17:25:01 -0600 |
commit | 75674f2c7479a5c2ba131e9513bdb0ec2c61ae7b (patch) | |
tree | 4d0c182ab178e1190dcb760bab9f4f839752fa70 /config/zsh/zshrc | |
parent | da8dc69027506eceab357695b68d334acf01cb06 (diff) |
refactor zsh config
Diffstat (limited to 'config/zsh/zshrc')
-rw-r--r-- | config/zsh/zshrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/zsh/zshrc b/config/zsh/zshrc index 2a0fcf0..16c4bed 100644 --- a/config/zsh/zshrc +++ b/config/zsh/zshrc @@ -1,8 +1,8 @@ export EDITOR=vim export LANG=en_US.UTF-8 -if [ -e "$ZDOTDIR/zshrc-local" ]; then - source "$ZDOTDIR/zshrc-local" +if [ -e "$ZDOTDIR/local.zsh" ]; then + source "$ZDOTDIR/local.zsh" fi source "$ZDOTDIR/appearance.zsh" |