From 3b2a78935fd6550521f719a10e5b0fceb1ddb350 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 15 Feb 2023 16:31:56 +0100 Subject: Not really but, First commit! --- config/essentials/zsh/variables.zsh | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 config/essentials/zsh/variables.zsh (limited to 'config/essentials/zsh/variables.zsh') 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 -- cgit v1.2.3