13 lines
267 B
Text
13 lines
267 B
Text
|
export EDITOR="/usr/bin/nano"
|
||
|
|
||
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
||
|
|
||
|
# set my titlebars
|
||
|
function set_win_title(){
|
||
|
echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"
|
||
|
}
|
||
|
starship_precmd_user_func="set_win_title"
|
||
|
|
||
|
eval "$(starship init bash)"
|
||
|
|