diff --git a/home/.zshenv b/home/.zshenv new file mode 100644 index 0000000..e0387d9 --- /dev/null +++ b/home/.zshenv @@ -0,0 +1,3 @@ +# PATH +export PATH="$HOME/go/bin:$PATH" +export PATH="$HOME/.bun/bin:$PATH" diff --git a/home/.zshrc b/home/.zshrc index 3ab9b24..e38e217 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -11,9 +11,6 @@ source /usr/share/zsh/plugins/fzf-tab-git/fzf-tab.plugin.zsh source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -# bun -export PATH="$HOME/.bun/bin:$PATH" - # mise if command -v mise &> /dev/null; then eval "$(mise activate zsh)" diff --git a/modules/zsh.py b/modules/zsh.py index 9153e6d..d9c1a37 100644 --- a/modules/zsh.py +++ b/modules/zsh.py @@ -11,6 +11,10 @@ class ZshModule(Module): def files(self): return { + f"/home/{self.user}/.zshenv": File( + source_file="./home/.zshenv", + owner=self.user, + ), f"/home/{self.user}/.zshrc": File( source_file="./home/.zshrc", owner=self.user,