diff options
Diffstat (limited to 'config/essentials/zsh/variables.zsh')
-rw-r--r-- | config/essentials/zsh/variables.zsh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/essentials/zsh/variables.zsh b/config/essentials/zsh/variables.zsh new file mode 100644 index 0000000..fd8099a --- /dev/null +++ b/config/essentials/zsh/variables.zsh @@ -0,0 +1,27 @@ +#!/bin/zsh +# VARIABLES +export ZOT="${HOME}/zot" + +export EDITOR="nvim" +export VISUAL="nvim" + +# colored GCC warnings and errors +export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + +# Prevent ranger from loading config twice +export RANGER_LOAD_DEFAULT_RC=FALSE + +# Color of zsh-suggestion +export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=10' +export STARSHIP_CONFIG="${HOME}/.config/starship/starship.toml" +export FUNCNEST=10000 +export fpath=($HOME/.config/zsh/completion/ $fpath) + +# Config files from .config +export XINITRC="$HOME/.config/x11/xinitrc" +export GNUPGHOME="$HOME/.config/gnupg" +export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0" +# export VIMINIT="source ~/.config/vim/vimrc" + +export PASSWORD_STORE_CLIP_TIME=5 +export DISPLAY=:0 |