2023-11-22 15:07:25 +03:00

37 lines
690 B
Plaintext

umask 022
export EDITOR="nvim"
export VISUAL="nvim"
export PAGER="less"
export LESS="-nMiSR -+X -+F"
export CDPATH=:~:~/code
export HISTSIZE=10000
export HISTFILESIZE=10000
export HISTCONTROL=ignoreboth:erasedups
export HISTTIMEFORMAT="%F %T "
export HISTIGNORE="&:l[lsa\.]:[bf]g:exit:q:clear:c:history:h"
export BROWSERCLI=w3m
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