1
0
Fork 0

Update ZSHRC

This commit is contained in:
Nexus 2024-03-20 12:54:48 +00:00
parent e03c7caef3
commit dca041c447
Signed by: nex
GPG key ID: 0FA334385D0B689F
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# Created by `pipx` on 2024-03-20 01:03:28
export PATH="$PATH:/home/nexus/.local/bin"

9
.zshrc
View file

@ -1,4 +1,12 @@
export SUDO_PROMPT="$(tput bold setaf 7)[sudo]$(tput sgr0) $(tput setaf 6)password for$(tput sgr0) $(tput setaf 5)%p$(tput sgr0): " export SUDO_PROMPT="$(tput bold setaf 7)[sudo]$(tput sgr0) $(tput setaf 6)password for$(tput sgr0) $(tput setaf 5)%p$(tput sgr0): "
if [[ -d "$HOME/.local/bin" ]]; then
export PATH="$HOME/.local/bin:$PATH"
fi;
if [[ -d "$HOME/.cargo/bin" ]]; then
export PATH="$HOME/.cargo/bin:$PATH"
fi;
plugins=(git sudo rsync zsh-syntax-highlighting zsh-autosuggestions) plugins=(git sudo rsync zsh-syntax-highlighting zsh-autosuggestions)
if [ -f $HOME/.pyenv/bin/pyenv ]; then if [ -f $HOME/.pyenv/bin/pyenv ]; then
export PYENV_ROOT="$HOME/.pyenv" export PYENV_ROOT="$HOME/.pyenv"
@ -25,3 +33,4 @@ export LANG=en_GB.UTF-8
export EDITOR=nvim export EDITOR=nvim
export ARCHFLAGS="-arch x86_64" export ARCHFLAGS="-arch x86_64"
export GPG_TTY=$(tty) export GPG_TTY=$(tty)