10 lines
314 B
Bash
10 lines
314 B
Bash
# Enable the subsequent settings only in interactive sessions
|
|
case $- in
|
|
*i*) ;;
|
|
*) return;;
|
|
esac
|
|
|
|
eval "$(starship init bash)"
|
|
alias config='/run/current-system/sw/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME'
|
|
alias nixconfig='/run/current-system/sw/bin/git --git-dir=$HOME/dotfiles/ --work-tree=/'
|
|
|