Set zsh PATH
This commit is contained in:
parent
2cd84ca1af
commit
f986a58b87
3 changed files with 14 additions and 2 deletions
|
@ -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
|
||||
|
|
6
dotfiles/zsh/zshenv
Normal file
6
dotfiles/zsh/zshenv
Normal file
|
@ -0,0 +1,6 @@
|
|||
# ~/.zshenv
|
||||
#
|
||||
|
||||
typeset -U PATH path
|
||||
path=("$HOME/.local/bin" "$path[@]" "$HOME/.cargo/bin")
|
||||
export PATH
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue