souring .bashrc in .bash_profile for ssh sessions
removed exit when non interactive from .bashrc
This commit is contained in:
@@ -2,3 +2,4 @@
|
|||||||
# ~/.bash_profile
|
# ~/.bash_profile
|
||||||
#
|
#
|
||||||
|
|
||||||
|
source "~/.bashrc"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
export HISTCONTROL=ignoreboth:erasedups
|
export HISTCONTROL=ignoreboth:erasedups
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
# If not running interactively, don't do anything
|
||||||
[[ $- != *i* ]] && return
|
# [[ $- != *i* ]] && return
|
||||||
|
|
||||||
# unbind shortcuts with ctrl+vim-bindings for navigation in tmux
|
# unbind shortcuts with ctrl+vim-bindings for navigation in tmux
|
||||||
#bind -r "\C-h"
|
#bind -r "\C-h"
|
||||||
@@ -44,13 +44,12 @@ export TERM="xterm-256color"
|
|||||||
# extend PATH variable
|
# extend PATH variable
|
||||||
# export PATH=$PATH:~/path/to/add
|
# export PATH=$PATH:~/path/to/add
|
||||||
if [[ "$PATH" != *"dotfiles/misc/scripts/"* ]]; then
|
if [[ "$PATH" != *"dotfiles/misc/scripts/"* ]]; then
|
||||||
export PATH=$PATH:$HOME/dotfiles/misc/scripts/;
|
export PATH=$PATH:$HOME/dotfiles/misc/scripts/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# setup starship
|
# setup starship
|
||||||
eval "$(starship init bash)"
|
eval "$(starship init bash)"
|
||||||
|
|
||||||
|
|
||||||
# source shell scripts
|
# source shell scripts
|
||||||
source_list=()
|
source_list=()
|
||||||
|
|
||||||
@@ -74,4 +73,3 @@ for script in ${source_list[@]}; do
|
|||||||
source ${script}
|
source ${script}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user