2017-11-18 02:10:59 -05:00
|
|
|
### ZSH Config
|
2017-06-19 00:49:00 -04:00
|
|
|
|
2017-11-18 02:41:10 -05:00
|
|
|
## 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
|
|
|
|
|
2017-11-18 02:10:59 -05:00
|
|
|
## Path to your oh-my-zsh installation.
|
2017-11-18 02:29:25 -05:00
|
|
|
export ZSH=$HOME/.oh-my-zsh
|
2017-06-19 00:49:00 -04:00
|
|
|
|
2017-11-18 02:10:59 -05:00
|
|
|
## See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
|
2017-10-24 15:28:32 -04:00
|
|
|
ZSH_THEME="steeef"
|
2017-06-19 00:49:00 -04:00
|
|
|
|
2017-11-18 02:10:59 -05:00
|
|
|
## Plugins
|
2017-11-15 21:53:39 -05:00
|
|
|
plugins=(git vi-mode history-substring-search)
|
2017-06-19 00:49:00 -04:00
|
|
|
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
|
|
|
2017-11-18 02:10:59 -05:00
|
|
|
### User configuration
|
2017-11-18 02:29:25 -05:00
|
|
|
source $HOME/.aliases
|
2017-06-19 00:49:00 -04:00
|
|
|
|
2017-11-18 02:10:59 -05:00
|
|
|
## GPG Auth method
|
2017-06-19 00:49:00 -04:00
|
|
|
export GPG_TTY=$(tty)
|
2017-11-15 21:53:39 -05:00
|
|
|
|
|
|
|
## Vim stuff
|
|
|
|
# Reduce delay swithing between normal & insert mode
|
|
|
|
export KEYTIMEOUT=1
|
|
|
|
|
|
|
|
# Use vim cli mode
|
2017-11-15 22:38:50 -05:00
|
|
|
bindkey '^K' history-beginning-search-backward
|
|
|
|
bindkey '^J' history-beginning-search-forward
|
2017-11-15 21:53:39 -05:00
|
|
|
|
|
|
|
# ctrl-w removed word backwards
|
|
|
|
bindkey '^w' backward-kill-word
|
2017-11-18 02:10:59 -05:00
|
|
|
|
|
|
|
## Dircolors
|
|
|
|
eval `dircolors ~/.config/dircolors-solarized/dircolors.256dark`
|