dotfiles/.bashrc

18 lines
404 B
Bash
Raw Normal View History

2024-04-23 22:50:26 +00:00
export GOPATH=~/go
export GOTELEMETRY=off
export GOTOOLCHAIN=local
2024-10-15 22:19:35 +00:00
# export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
2021-02-20 00:39:48 +00:00
2024-10-15 22:19:35 +00:00
export EDITOR="/usr/bin/nano"
2021-02-20 00:39:48 +00:00
# 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)"
2024-10-15 22:19:35 +00:00
alias wttr='curl wttr.in'
alias tsreset='sudo tailscale up --reset --exit-node='