1
0
Fork 0
.dotfiles/.zshrc

19 lines
707 B
Bash
Raw Normal View History

export SUDO_PROMPT="$(tput bold setaf 7)[sudo]$(tput sgr0) $(tput setaf 6)password for$(tput sgr0) $(tput setaf 5)%p$(tput sgr0): "
export PYENV_ROOT="$HOME/.pyenv"
2024-03-05 18:18:38 +00:00
export PATH="$PYENV_ROOT/bin:$PATH"
export PATH="/home/nex/.local/bin:$PATH"
eval "$(pyenv init -)"
2024-03-05 12:01:06 +00:00
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="agnoster"
HYPHEN_INSENSITIVE="true"
2024-03-05 18:18:38 +00:00
zstyle ':omz:update' mode auto # update automatically without asking
2024-03-05 12:01:06 +00:00
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
HIST_STAMPS="dd.mm.yyyy"
plugins=(git sudo rsync zsh-syntax-highlighting zsh-autosuggestions command-not-found )
2024-03-05 12:01:06 +00:00
source $ZSH/oh-my-zsh.sh
export LANG=en_GB.UTF-8
export EDITOR=nvim
export ARCHFLAGS="-arch x86_64"
export GPG_TTY=$(tty)