diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-08-09 19:14:32 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-08-09 19:14:32 +0400 |
commit | 0d9b8a12f3db5c984a7220ec7979220df5f80c1d (patch) | |
tree | fa415250e06c722bf5cb11876ab0c78451220a6a /config/shell/profile | |
parent | 3d51988caa7d6c7f4e3ba890ac8fb20c5c95d0fe (diff) |
some improvements in shells
Diffstat (limited to 'config/shell/profile')
-rw-r--r-- | config/shell/profile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/config/shell/profile b/config/shell/profile index 264d4ef..40fef77 100644 --- a/config/shell/profile +++ b/config/shell/profile @@ -1,16 +1,18 @@ #Directories -export XDG_CACHE_HOME=$HOME/.cache -export XDG_CONFIG_HOME=$HOME/.config -export XDG_DATA_HOME=$HOME/.local/share -export XDG_STATE_HOME=$HOME/.local/state -export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc" -export ZSHRC="$XDG_CONFIG_HOME/zsh/zshrc" +export XDG_CACHE_HOME="$HOME"/.cache +export XDG_CONFIG_HOME="$HOME"/.config +export XDG_DATA_HOME="$HOME"/.local/share +export XDG_STATE_HOME="$HOME"/.local/state +export XINITRC="$XDG_CONFIG_HOME"/x11/xinitrc +export ZSHRC="$XDG_CONFIG_HOME"/zsh/zshrc # Environment variables [ -x "$(command -v vim)" ] && export EDITOR="vim" [ -x "$(command -v nvim)" ] && export EDITOR="nvim" +[ -x "$(command -v alacritty)" ] && export TERMINAL="alacritty" [ -x "$(command -v st)" ] && export TERMINAL="st" +[ -x "$(command -v firefox)" ] && export BROWSER="firefox" [ -x "$(command -v qutebrowser)" ] && export BROWSER="qutebrowser" export MAKEFLAGS="-j8" # Reduce compile times |