2019-05-02 01:21:48 +00:00
|
|
|
|
|
|
|
# Set PATH
|
|
|
|
export PATH=~/bin:~/.local/bin:/usr/local/bin:/usr/local/sbin:$PATH
|
|
|
|
|
|
|
|
# Setup terminal environment
|
|
|
|
export TERM=xterm-256color
|
|
|
|
export CLICOLOR=1
|
|
|
|
export LSCOLORS=Gxfxcxdxbxegedabagacad
|
|
|
|
|
|
|
|
# Enable grep colors
|
|
|
|
export GREP_COLOR='3;33'
|
|
|
|
|
|
|
|
# VIM everything
|
2019-09-19 20:16:56 +00:00
|
|
|
export EDITOR='nvim'
|
2019-05-02 01:21:48 +00:00
|
|
|
|
|
|
|
# Fix gnupg
|
|
|
|
export GPG_TTY=$(tty)
|
2020-03-09 14:20:14 +00:00
|
|
|
|
|
|
|
# Fix GOPATH
|
|
|
|
export GOPATH="$HOME/dev/go"
|
|
|
|
export PATH="$HOME/dev/go/bin:$PATH"
|
2020-09-03 16:52:18 +00:00
|
|
|
|
|
|
|
# tmux command for use with ssh / mosh commands
|
|
|
|
export TM="tmux new-session -A -s main"
|