dotfiles/.bashrc

23 lines
596 B
Bash
Raw Normal View History

2021-02-20 00:39:48 +00:00
set -o vi
export GOPATH="/home/thrrgilag/go"
export GOTELEMETRY=off
export GOTOOLCHAIN=local
2022-08-11 00:46:33 +00:00
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
2023-01-02 15:42:38 +00:00
export EDITOR="/usr/bin/nano"
2021-02-20 00:39:48 +00:00
alias df='df -x squashfs'
2022-02-10 02:21:34 +00:00
alias tmutt='mutt -F ~/.config/mutt/thrrgilag-muttrc'
2022-08-11 00:46:33 +00:00
alias dmutt='mutt -F ~/.config/mutt/delta-muttrc'
2022-05-11 12:27:29 +00:00
alias pmutt='mutt -F ~/.muttrc-proton'
2021-02-20 00:39:48 +00:00
alias wttr='curl wttr.in'
2023-04-08 12:58:28 +00:00
alias bwunlock='export BW_SESSION=$(bw unlock --raw)'
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)"