From a6a3d3a7597227c50bf9ef58a6affc6ed9089beb Mon Sep 17 00:00:00 2001 From: Daniil Fajnberg Date: Thu, 17 Feb 2022 10:35:01 +0100 Subject: [PATCH] better zsh file setup --- shell/.config/shell/profile | 2 ++ shell/.zprofile | 1 + zsh/{.zshrc => .config/zsh/rc} | 0 3 files changed, 3 insertions(+) create mode 120000 shell/.zprofile rename zsh/{.zshrc => .config/zsh/rc} (100%) diff --git a/shell/.config/shell/profile b/shell/.config/shell/profile index 17b1eaf..8fa8105 100644 --- a/shell/.config/shell/profile +++ b/shell/.config/shell/profile @@ -8,6 +8,8 @@ for file in ~/.config/shell/{path,exports,aliases,functions,extra}; do done; unset file; +source ~/.config/zsh/rc + # Setup pyenv, if it is installed: if [ -x "$(command -v pyenv)" ]; then eval "$(pyenv init --path)" diff --git a/shell/.zprofile b/shell/.zprofile new file mode 120000 index 0000000..8486fca --- /dev/null +++ b/shell/.zprofile @@ -0,0 +1 @@ +.config/shell/profile \ No newline at end of file diff --git a/zsh/.zshrc b/zsh/.config/zsh/rc similarity index 100% rename from zsh/.zshrc rename to zsh/.config/zsh/rc