master
Paul Walko 2017-11-18 10:02:00 -05:00
parent 4d11d566f5
commit e1c8b85ed5
2 changed files with 3 additions and 15 deletions

View File

@ -1,18 +1,3 @@
## Set term for proper colors
if [[ -z $TMUX ]]; then
if [ -e /usr/share/terminfo/x/xterm-256color ]; then # may be xterm-256 depending on your distro
export TERM='xterm-256color'
else
export TERM='xterm'
fi
else
if [ -e /usr/share/terminfo/s/screen-256color ]; then
export TERM='screen-256color'
else
export TERM='screen'
fi
fi
# Other settings
xbindkeys &> /dev/null
gpg2 --quiet --no-tty --batch -d $HOME/.mutt/passwords/dumb.gpg &> /dev/null

3
zshrc
View File

@ -1,5 +1,8 @@
### ZSH Config
## Set TERM
export TERM=xterm-256color
## For local binaries (vim 8)
export PATH=$HOME/.local/bin:$PATH