diff options
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..5f7f323 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,25 @@ +[[ -f ~/.bashrc ]] && . ~/.bashrc +. "$HOME/.cargo/env" + +export EDITOR="nvim" +export VISUAL="emacs" +export TERMINAL="alacritty" +export BROWSER="librewolf" +export COLORTERM="truecolor" +export PAGER="bat" + +export PATH=$HOME/.scripts:$PATH +export PATH=$HOME/.local/bin:$PATH +export PATH=$HOME/.config/emacs/bin:$PATH + +export PATH=/usr/local/bin:$PATH + +# export RUST_SRC_PATH=$HOME/.cargo +export PATH=$HOME/.gopath:$PATH +export GOPATH="$HOME/.gopath" +# export PATH=$HOME/.local/flutter/bin:$PATH + +export ZDOTDIR="$HOME/.config/zsh" + +export QT_QPA_PLATFORMTHEME=qt5ct +export QT_QPA_PLATFORMTHEME_QT6=qt6ct |