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