8 lines
136 B
Bash
8 lines
136 B
Bash
# interactive session
|
|
if [[ $- == *i* ]]; then
|
|
|
|
PS1='\[\033[0;32;40m\][nix]$\[\033[0m\] '
|
|
|
|
# setup direnv
|
|
eval "$(direnv hook bash)"
|
|
fi
|