dotfiles/zsh/zshrc

42 lines
1,018 B
Bash
Raw Normal View History

source ~/.zplug/init.zsh
# PLUGINS
export ZSH_TMUX_AUTOSTART=true
if ! zplug check; then
zplug install
fi
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/gitfast", from:oh-my-zsh
zplug "plugins/git-extras", from:oh-my-zsh
zplug "plugins/kubectl", from:oh-my-zsh
zplug "plugins/nvm", from:oh-my-zsh
zplug "plugins/terraform", from:oh-my-zsh
zplug "plugins/tmux", from:oh-my-zsh
zplug "plugins/common-aliases", from:oh-my-zsh
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
2021-03-20 22:36:25 +00:00
fi
zplug load
2021-03-20 22:36:25 +00:00
# History improvements
export HISTFILE=~/.zsh_history
export HISTFILESIZE=1000000000
export HISTSIZE=1000000000
export SAVEHIST=100000
setopt INC_APPEND_HISTORY
setopt HIST_IGNORE_ALL_DUPS
# Vimode
bindkey -v
bindkey -M vicmd "?" history-incremental-search-backward
bindkey -M vicmd "/" history-incremental-search-forward
2021-03-20 22:36:25 +00:00
# PATH
export PATH=$PATH:$HOME/.bin:$HOME/go/bin
2021-03-20 22:36:25 +00:00
# Starship
export STARSHIP_CONFIG=~/.starship.toml
eval "$(starship init zsh)"