Notes and bashrc fixes
This commit is contained in:
parent
0075d3aeca
commit
20efeff7c9
1 changed files with 5 additions and 3 deletions
|
@ -9,14 +9,16 @@ export XDG_CONFIG_HOME="$HOME/.config"
|
||||||
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
export DOTFILES_PATH="$XDG_CONFIG_HOME/dotfiles"
|
||||||
export NICE_HOME="$HOME/.."
|
export NICE_HOME="$HOME/.."
|
||||||
|
|
||||||
|
# TODO: nice home on a per-device basis
|
||||||
|
|
||||||
|
# stop parsing on a non-interactive shell
|
||||||
|
[ -z "$PS1" ] && return
|
||||||
|
|
||||||
# load our terminal colors
|
# load our terminal colors
|
||||||
# TODO: update with new system
|
# TODO: update with new system
|
||||||
BASE16_SHELL="$DOTFILES_PATH/scripts/colors/shell"
|
BASE16_SHELL="$DOTFILES_PATH/scripts/colors/shell"
|
||||||
[[ -s "$BASE16_SHELL" ]] && source "$BASE16_SHELL"
|
[[ -s "$BASE16_SHELL" ]] && source "$BASE16_SHELL"
|
||||||
|
|
||||||
# stop parsing on a non-interactive shell
|
|
||||||
[ -z "$PS1" ] && return
|
|
||||||
|
|
||||||
# disable ctrl-s terminal freeze
|
# disable ctrl-s terminal freeze
|
||||||
[[ $- == *i* ]] && stty -ixon
|
[[ $- == *i* ]] && stty -ixon
|
||||||
|
|
||||||
|
|
Reference in a new issue