2023-03-05 02:35:08 +03:00

32 lines
601 B
Plaintext

umask 0077
export EDITOR="nvim"
export VISUAL="nvim"
export PAGER="less -R"
export CDPATH=:~:~/code
export HISTSIZE=10000
export HISTFILESIZE=10000
export HISTTIMEFORMAT="%F %T "
export HISTIGNORE="&:l[lsa\.]:[bf]g:exit:q:clear:c:history:h"
test -z "$BROWSER" && export BROWSER=firefox
if [ -d "$HOME/.local/bin" ] ; then
export PATH="$HOME/.local/bin:$PATH"
fi
if [ -d "$HOME/.npm-global/bin" ] ; then
export PATH="$HOME/.npm-global/bin:$PATH"
fi
if [ -d "$HOME/.go/bin" ] ; then
export PATH="$HOME/.go/bin:$PATH"
fi
if [ -d "$HOME/.go" ] ; then
export GOPATH="$HOME/.go"
fi