From f986a58b876d89e2494f1fe022a7586a704a5c2a Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Wed, 2 Sep 2020 16:33:45 +0200 Subject: [PATCH] Set zsh PATH --- dotfiles/bash/profile | 4 ++-- dotfiles/zsh/zshenv | 6 ++++++ dotfiles/zsh/zshrc | 6 ++++++ 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 dotfiles/zsh/zshenv diff --git a/dotfiles/bash/profile b/dotfiles/bash/profile index d1547d4..b261fab 100644 --- a/dotfiles/bash/profile +++ b/dotfiles/bash/profile @@ -7,8 +7,8 @@ if [ -x /usr/bin/vim ]; then export EDITOR="/usr/bin/vim" fi -export PATH="$HOME/.cargo/bin:$PATH" -export PATH="$PATH:$HOME/.local/bin" +export PATH="$HOME/.local/bin:$PATH" +export PATH="$PATH:$HOME/.cargo/bin" if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then exec startx diff --git a/dotfiles/zsh/zshenv b/dotfiles/zsh/zshenv new file mode 100644 index 0000000..3fc2f0a --- /dev/null +++ b/dotfiles/zsh/zshenv @@ -0,0 +1,6 @@ +# ~/.zshenv +# + +typeset -U PATH path +path=("$HOME/.local/bin" "$path[@]" "$HOME/.cargo/bin") +export PATH diff --git a/dotfiles/zsh/zshrc b/dotfiles/zsh/zshrc index b563f2f..ca2232e 100644 --- a/dotfiles/zsh/zshrc +++ b/dotfiles/zsh/zshrc @@ -1,3 +1,5 @@ +# ~/.zshrc + # PROMPT source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. @@ -5,3 +7,7 @@ source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme # ALIASES [[ ! -f ~/.zsh_aliases ]] || source ~/.zsh_aliases + +# SYNTAX HIGHLIGHTING +# The following line MUST be at the end of this file! +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh