diff --git a/dot_dotfiles/oh-my-zsh/custom/01_variables.zsh b/dot_dotfiles/oh-my-zsh/custom/01_variables.zsh index 06e7c2e..931cdf0 100644 --- a/dot_dotfiles/oh-my-zsh/custom/01_variables.zsh +++ b/dot_dotfiles/oh-my-zsh/custom/01_variables.zsh @@ -14,8 +14,6 @@ export EDITOR="vim" export LANG="en_US.UTF-8" export LC_ALL="en_US.UTF-8" -# If you come from bash you might have to change your $PATH. -# export PATH=$HOME/bin:/usr/local/bin:$PATH # ZSH History export HISTFILE="$HOME/.zsh_history" export HISTSIZE=100000 @@ -36,3 +34,6 @@ export MANPATH="/usr/local/man:$MANPATH" # Add ~/bin to the PATH [ -d "$HOME/bin" ] && export PATH="$HOME/bin:$PATH" + +# add doom emacs to the path +export PATH=$HOME/.emacs.d/bin:$PATH