diff options
author | Kjetil Ørbekk <kj@orbekk.com> | 2020-10-20 11:23:07 -0400 |
---|---|---|
committer | Kjetil Ørbekk <kj@orbekk.com> | 2020-10-20 11:23:07 -0400 |
commit | f32cd7abc115f0443dbbecdd0c2c4f16755a134e (patch) | |
tree | dbf4d6bcd6181b7b5e16bf3642f16311bfc48fba | |
parent | 09849d209ca4d6c80ed8dfe84402d3e31fe23d25 (diff) |
Include local zshrc. Some setup.sh improvements
-rwxr-xr-x | setup.sh | 4 | ||||
-rw-r--r-- | zsh/.zshrc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -20,6 +20,8 @@ fi if which emacs >/dev/null; then $STOW emacs - git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d + if [[ ! -e ~/.emacs.d ]]; then + git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d + fi doom sync # Too slow! fi @@ -20,3 +20,5 @@ setopt autocd PURE_GIT_PULL=0 PURE_GIT_UNTRACKED_DIRTY=0 prompt pure + +source ~/.zshrc.local |