dots/.bashrc

18 lines
292 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"
PS1='\u@\h \W\$ '
# nvm
source /usr/share/nvm/init-nvm.sh
# auto cd on path
shopt -s autocd
# history
export HISTCONTROL=ignoreboth