diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 20:34:11 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2025-05-25 20:34:11 +0530 |
commit | 266e01bd54217a419357016677adc61d9e0f7278 (patch) | |
tree | 86a8ce60c40df10c50dd0ffcaf75526b67f458f7 | |
parent | afa9bf330780b2217c48d11f061af07f0b3c45b6 (diff) |
switched to bash from zsh
-rw-r--r-- | .bash_profile | 25 | ||||
-rw-r--r-- | .bashrc | 11 |
2 files changed, 36 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 @@ -0,0 +1,11 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# alias ls='ls --color=auto' +# alias grep='grep --color=auto' +# PS1='[\u@\h \W]\$ ' +. "$HOME/.cargo/env" |