diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-22 01:12:30 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-22 01:13:17 +0100 |
commit | 3be6b1e661b75e1c90a602e6b767ab4cfbeadb53 (patch) | |
tree | 1dc40196f0ce5eeef580405bccebcc5001910e01 /config/essentials/zsh/variables.zsh | |
parent | 63dfe7619e58daaa75a2f81a8fed243bbf723201 (diff) |
cleanup: (zsh) moved variables.zsh to zshrc, and added old block, for unused variables
Diffstat (limited to 'config/essentials/zsh/variables.zsh')
-rw-r--r-- | config/essentials/zsh/variables.zsh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/config/essentials/zsh/variables.zsh b/config/essentials/zsh/variables.zsh deleted file mode 100644 index 77da52d..0000000 --- a/config/essentials/zsh/variables.zsh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/zsh -# VARIABLES -export ZOT="${HOME}/zot" - -export EDITOR="nvim" -export VISUAL="nvim" -export TERMINAL="alacritty" -export BROWSER="firefox" - -# 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 NVM_DIR="$HOME/.config/nvm" - -export PASSWORD_STORE_CLIP_TIME=5 |