From 266e01bd54217a419357016677adc61d9e0f7278 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 25 May 2025 20:34:11 +0530 Subject: switched to bash from zsh --- .bash_profile | 25 +++++++++++++++++++++++++ .bashrc | 11 +++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .bash_profile create mode 100644 .bashrc 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 diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..6d34d24 --- /dev/null +++ b/.bashrc @@ -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" -- cgit v1.2.3