dotfiles/zshrc

52 lines
926 B
Bash
Raw Normal View History

[[ -d "$GNU_TOOLS_PATH" ]] && PATH="$GNU_TOOLS_PATH:$PATH"
[[ -d "$GNU_TOOLS_MAN_PATH" ]] && MANPATH="$GNU_TOOLS_MAN_PATH:$MANPATH"
2013-09-18 21:08:28 -04:00
2014-09-05 00:23:33 -04:00
# clean up duplicate paths
typeset -U PATH
2013-04-29 01:12:02 -04:00
# Larger history
2013-08-05 22:07:01 -04:00
HISTSIZE=20000
2013-04-29 01:12:02 -04:00
HISTFILE=~/.zsh_history
2013-08-05 22:07:01 -04:00
SAVEHIST=20000
2013-04-29 01:12:02 -04:00
2013-04-29 13:32:51 -04:00
# Make sure C-s works in vim
stty start undef
stty stop undef
# Aliases/Functions files
2013-04-29 01:14:37 -04:00
source $HOME/.aliases
2013-04-29 13:32:51 -04:00
source $HOME/.functions
source $HOME/.zsh/prompt
2013-04-29 01:14:37 -04:00
2014-10-23 18:03:58 -04:00
if [[ "$OSTYPE" == darwin* ]]; then
source $HOME/.aliases-mac
fi
2013-05-28 23:32:51 -04:00
# Bind insert_sudo function
zle -N insert-sudo
bindkey "^z" insert-sudo
2013-12-16 14:12:00 -05:00
# init rbenv
2015-12-11 08:45:55 -05:00
if test -d "$HOME/.rbenv"; then
eval "$(rbenv init -)"
2013-08-22 01:35:40 -04:00
fi
2014-09-05 00:32:23 -04:00
# load nvm
if test -d "$NVM_DIR"; then
source "$NVM_DIR/nvm.sh"
fi
2016-08-13 16:06:49 -04:00
# completion
autoload -U compinit
compinit
setopt completeinword
2016-08-15 10:05:09 -04:00
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
2016-08-13 16:06:49 -04:00
# directory
setopt auto_cd
2016-08-15 10:05:09 -04:00
# better word definition
autoload -U select-word-style
select-word-style bash