diff options
-rw-r--r-- | zsh/.zshrc | 9 | ||||
-rw-r--r-- | zsh/.zshrc.work | 3 |
2 files changed, 7 insertions, 5 deletions
@@ -155,8 +155,6 @@ chpwd zstyle ':prompt:rtab' fish yes zstyle ':prompt:rtab' nameddirs yes - - # ############################################################################# # exports # ############################################################################# @@ -374,3 +372,10 @@ if [[ $_HOST_TYPE == "Linux" ]]; then alias lp8p='/usr/bin/lp -o sides=two-sided-short-edge -o number-up=4 -o landscape' alias lpimg='/usr/bin/lp -o fit-to-page' fi + +if [[ -f ~/.zshrc.personal ]]; then + source ~/.zshrc.personal +fi +if [[ -f ~/.zshrc.work ]]; then + source ~/.zshrc.work +fi diff --git a/zsh/.zshrc.work b/zsh/.zshrc.work index cd9b497..e69de29 100644 --- a/zsh/.zshrc.work +++ b/zsh/.zshrc.work @@ -1,3 +0,0 @@ -if [ -f '/home/pks/work/google-cloud-sdk/path.zsh.inc' ]; then . '/home/pks/work/google-cloud-sdk/path.zsh.inc'; fi -if [ -f '/home/pks/work/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/pks/work/google-cloud-sdk/completion.zsh.inc'; fi - |