49 lines
1008 B
Plaintext
Executable File
49 lines
1008 B
Plaintext
Executable File
#Default Editor is VIM
|
|
export EDITOR="vim"
|
|
|
|
#Set GIT Directory Variable
|
|
export GITDIR="/home/burchettm/.git/computers"
|
|
export GIT="/home/burchettm/.git"
|
|
|
|
#Set ScreenShots Directory Variable
|
|
export SCREENSHOTS="/home/burchettm/Desktop/Screenshots"
|
|
|
|
#Colored ManPages
|
|
export LESS_TERMCAP_mb=$'\E[01;31m'
|
|
export LESS_TERMCAP_md=$'\E[01;31m'
|
|
export LESS_TERMCAP_me=$'\E[0m'
|
|
export LESS_TERMCAP_se=$'\E[0m'
|
|
export LESS_TERMCAP_so=$'\E[01;44;33m'
|
|
export LESS_TERMCAP_ue=$'\E[0m'
|
|
export LESS_TERMCAP_us=$'\E[01;32m'
|
|
|
|
export PAGER=less
|
|
|
|
#Colorgcc
|
|
export CC=/usr/local/bin/colorgcc
|
|
|
|
# color grep
|
|
export GREP_COLOR=32
|
|
alias grep='grep --color'
|
|
alias egrep='egrep --color'
|
|
|
|
|
|
#Enable LIBETC (dotfiles mover)
|
|
#export LD_PRELOAD=libetc.so
|
|
|
|
#Default Browser is Opera, unless in TTY then it's links
|
|
# Browser
|
|
if [ -n "$DISPLAY" ]; then
|
|
export BROWSER=opera
|
|
else
|
|
export BROWSER=links
|
|
fi
|
|
|
|
#Set 256-color terminal
|
|
|
|
#if [ -n "$DISPLAY" ];
|
|
# then export TERM="xterm-256color"
|
|
# else export TERM="linux"
|
|
#fi
|
|
|