update
This commit is contained in:
18
zshrc
18
zshrc
@@ -1,5 +1,23 @@
|
||||
### ZSH Config
|
||||
|
||||
## 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.xterm-256color ]; then
|
||||
export TERM='screen-256color'
|
||||
else
|
||||
export TERM='screen'
|
||||
fi
|
||||
fi
|
||||
|
||||
## For local binaries (vim 8)
|
||||
export PATH=$HOME/.local/bin:$PATH
|
||||
|
||||
## Path to your oh-my-zsh installation.
|
||||
export ZSH=$HOME/.oh-my-zsh
|
||||
|
||||
|
||||
Reference in New Issue
Block a user