2016-11-21 22:59:45 +00:00
|
|
|
# Lines configured by zsh-newuser-install
|
2016-11-18 07:52:30 +00:00
|
|
|
HISTFILE=~/.histfile
|
|
|
|
HISTSIZE=1000
|
|
|
|
SAVEHIST=1000
|
2016-11-21 22:59:45 +00:00
|
|
|
setopt appendhistory autocd extendedglob notify
|
2016-11-18 07:52:30 +00:00
|
|
|
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
|
|
|
|
|
2016-11-21 22:59:45 +00:00
|
|
|
#Better history completions
|
|
|
|
autoload -U up-line-or-beginning-search
|
|
|
|
autoload -U down-line-or-beginning-search
|
|
|
|
zle -N up-line-or-beginning-search
|
|
|
|
zle -N down-line-or-beginning-search
|
|
|
|
bindkey "^[[A" up-line-or-beginning-search # Up
|
|
|
|
bindkey "^[[B" down-line-or-beginning-search # Down
|
|
|
|
|
2016-11-18 07:52:30 +00:00
|
|
|
source ~/.zplug/init.zsh
|
|
|
|
|
2016-12-16 21:06:16 +00:00
|
|
|
zplug "plugins/git", from:oh-my-zsh, defer:3
|
2016-11-18 07:52:30 +00:00
|
|
|
zplug "plugins/sudo", from:oh-my-zsh
|
|
|
|
zplug "lib/theme-and-appearance", from:oh-my-zsh
|
2016-12-16 21:06:16 +00:00
|
|
|
zplug "plugins/taskwarrior", from:oh-my-zsh
|
2016-11-18 07:52:30 +00:00
|
|
|
zplug "zsh-users/zsh-syntax-highlighting"
|
|
|
|
zplug "zsh-users/zsh-history-substring-search"
|
|
|
|
zplug "zsh-users/zsh-completions"
|
|
|
|
zplug "zsh-users/zsh-autosuggestions"
|
|
|
|
zplug "gusaiani/elixir-oh-my-zsh"
|
2016-12-04 04:12:02 +00:00
|
|
|
zplug "frmendes/geometry"
|
2016-11-18 07:52:30 +00:00
|
|
|
|
|
|
|
if ! zplug check --verbose; then
|
|
|
|
printf "Install? [y/N]: "
|
|
|
|
if read -q; then
|
|
|
|
echo; zplug install
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
zplug load
|
|
|
|
|
|
|
|
export EDITOR="nvim"
|
|
|
|
|
2016-11-21 22:59:45 +00:00
|
|
|
eval "$(hub alias -s)"
|
2016-11-18 07:52:30 +00:00
|
|
|
alias vi="nvim"
|
|
|
|
alias vim="nvim"
|
2017-02-28 06:36:01 +00:00
|
|
|
alias cl="clear && screenfetch"
|
2016-11-21 22:59:45 +00:00
|
|
|
alias prm=". $HOME/.prm/prm.sh"
|
2016-12-16 21:06:16 +00:00
|
|
|
alias bar=". $HOME/.scripts/bar.sh"
|
2016-11-18 07:52:30 +00:00
|
|
|
. $HOME/.asdf/asdf.sh
|
|
|
|
. $HOME/.asdf/completions/asdf.bash
|
2016-06-18 19:23:03 +00:00
|
|
|
|
2016-12-29 21:17:13 +00:00
|
|
|
export PATH="$HOME/.apps/Elm-Platform/0.18/.cabal-sandbox/bin":$PATH
|
|
|
|
export PATH="$HOME/.apps/admiral/target/release":$PATH
|
2017-02-28 06:36:01 +00:00
|
|
|
export PATH="$HOME/.apps/icecat":$PATH
|
2017-02-11 18:54:23 +00:00
|
|
|
export PATH="$HOME/.apps":$PATH
|
2016-12-29 21:17:13 +00:00
|
|
|
export PATH="$HOME/.local/bin":$PATH
|
|
|
|
export PATH="$HOME/.cargo/bin":$PATH
|
2016-12-16 21:06:16 +00:00
|
|
|
|
2016-12-29 21:17:13 +00:00
|
|
|
source $HOME/.cargo/env
|
|
|
|
export RUST_SRC_PATH=~/.multirust/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src
|
|
|
|
|
|
|
|
fortune -o | cowsay
|