2016-11-18 07:52:30 +00:00
|
|
|
HISTFILE=~/.histfile
|
|
|
|
HISTSIZE=1000
|
|
|
|
SAVEHIST=1000
|
|
|
|
bindkey -e
|
|
|
|
# End of lines configured by zsh-newuser-install
|
|
|
|
# The following lines were added by compinstall
|
|
|
|
zstyle :compinstall filename '/home/gigavinyl/.zshrc'
|
|
|
|
|
|
|
|
autoload -Uz compinit
|
|
|
|
compinit
|
|
|
|
# End of lines added by compinstall
|
|
|
|
|
|
|
|
source ~/.zplug/init.zsh
|
|
|
|
|
|
|
|
zplug "plugins/git", from:oh-my-zsh
|
|
|
|
zplug "plugins/sudo", from:oh-my-zsh
|
|
|
|
zplug "lib/theme-and-appearance", from:oh-my-zsh
|
|
|
|
zplug "zsh-users/zsh-syntax-highlighting"
|
|
|
|
zplug "zsh-users/zsh-history-substring-search"
|
|
|
|
zplug "zsh-users/zsh-completions"
|
|
|
|
zplug "zsh-users/zsh-autosuggestions"
|
|
|
|
zplug "frmendes/geometry"
|
|
|
|
zplug "gusaiani/elixir-oh-my-zsh"
|
|
|
|
|
|
|
|
if ! zplug check --verbose; then
|
|
|
|
printf "Install? [y/N]: "
|
|
|
|
if read -q; then
|
|
|
|
echo; zplug install
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
zplug load
|
|
|
|
|
|
|
|
export EDITOR="nvim"
|
|
|
|
|
|
|
|
alias vi="nvim"
|
|
|
|
alias vim="nvim"
|
|
|
|
alias cl="clear && screenfetch"
|
|
|
|
. $HOME/.asdf/asdf.sh
|
|
|
|
. $HOME/.asdf/completions/asdf.bash
|
2016-06-18 19:23:03 +00:00
|
|
|
|