From 439d3ee876b5129ee231420e67502f23c44f325e Mon Sep 17 00:00:00 2001 From: Joachim Date: Sat, 12 Sep 2020 10:17:42 +0200 Subject: [PATCH] Added doom to path --- dot_dotfiles/oh-my-zsh/custom/01_variables.zsh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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