2019-10-20 16:24:07 -05:00
|
|
|
export GOPATH=$HOME/lib/go
|
|
|
|
|
|
|
|
insert_path_element_before /usr/local/bin
|
|
|
|
insert_path_element_before /usr/local/go/bin
|
|
|
|
insert_path_element_before /opt/brew/bin
|
|
|
|
insert_path_element $GOPATH/bin
|
|
|
|
insert_path_element $HOME/.cabal/bin
|
|
|
|
insert_path_element /usr/texbin
|
2019-10-21 19:37:23 -05:00
|
|
|
insert_path_element_before $HOME/.cargo/bin
|
2019-10-20 16:24:07 -05:00
|
|
|
|
|
|
|
export ALTERNATE_EDITOR=""
|
|
|
|
export EDITOR="vim"
|
|
|
|
export TEXMFLOCAL=~/texmf/
|
|
|
|
|
|
|
|
export HISTORYSIZE=500000
|
|
|
|
export HISTIGNORE="&"
|
|
|
|
export HISTCONTROL=erasedups
|
|
|
|
export HISTFILESIZE=$HISTORYSIZE
|
|
|
|
export HISTSIZE=$HISTORYSIZE
|
|
|
|
shopt -s histappend
|
|
|
|
# turn on vi mode command line editing
|
|
|
|
set -o vi
|
|
|
|
|
|
|
|
export LC_ALL=en_US.UTF-8
|
2021-10-28 21:49:43 -04:00
|
|
|
|
|
|
|
eval $(ssh-agent -s)
|
|
|
|
ssh-add $(find ~/.ssh -iname id_* | grep -v '.pub')
|