summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorMehdi Sadeghi <mehdi@mehdix.org>2023-02-11 11:39:09 +0100
committerMehdi Sadeghi <mehdi@mehdix.org>2023-02-11 11:39:09 +0100
commitd9875a5f7820a4040d7658d348e5e8a4d1b10d31 (patch)
tree5c847b26eac14b176adfac6ac4a4147a832dad16 /.bashrc
parent0166b86c8cd4827dc68da35d584b4c40041faf54 (diff)
Add profile warning, git autoSetup, GDK & new envs
- Warn on existing .bash_profile (it prevents loading .profile) - Add autoSetupRemote to create git remote branches on push - Add GTK setting to use Wayland - Add volta env vars since I use it alot
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/.bashrc b/.bashrc
index 99884a3..c4439e7 100644
--- a/.bashrc
+++ b/.bashrc
@@ -6,6 +6,9 @@ echo .bashrc begin
PS1='\[\033[1;33m\]$($HOME/.local/bin/prompt)\[\033[0m\]'
+# Warn if .bash_profile exists (since it will prevent loading .profile)
+[[ -f ~/.bash_profile ]] && echo WARN: .bash_profile exists
+
# Bash history config
HISTSIZE=65535
HISTFILE=$HOME/.bash_history