dots/.bashrc

17 lines
275 B
Bash
Raw Normal View History

2020-04-07 22:24:30 +02:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# load aliases dynamically
[ -f "$HOME/.aliasrc" ] && source "$HOME/.aliasrc"
2020-04-08 21:22:00 +02:00
# PS1='\u@\h \W\$ '
PS1='\W \u $ '
2020-04-07 22:24:30 +02:00
# nvm
source /usr/share/nvm/init-nvm.sh
# history
export HISTCONTROL=ignoreboth