dotfiles/zsh/zshrc
2018-10-19 15:31:57 -04:00

76 lines
2.1 KiB
Bash

# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt extendedglob nomatch notify histignorespace histignorealldups histnofunctions histnostore histverify incappendhistory
unsetopt autocd beep
bindkey -e
#keybindings
fpath=(~/bin $fpath)
zstyle :compinstall filename '/home/anthonys/.zshrc'
zstyle ":completion:*" complete _complete _ignored _approximate
zstyle ":completion:*" glob 1
zstyle ":completion:*" insert-unambiguous true
zstyle ':completion:*' menu select
zstyle ':completion:*' rehash true
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}'
zstyle ":completion:*" substitute 1
autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
zle -N up-line-or-beginning-search
zle -N down-line-or-beginning-search
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
autoload -Uz compinit promptinit
promptinit
compinit
export COMPLETION_WAITING_DOTS="true"
export VISUAL='nvim'
export EDITOR='nvim'
export ANDROID_HOME=$HOME/Android/sdk
export PATH=$HOME/bin:$PATH:$ANDROID_HOME/platform-tools
# antigen
source $HOME/.antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle command-not-found
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle thefuck
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
antigen apply
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
alias exa="exa -l --git"
eval $(thefuck --alias oops)
# pip 10.0.1 zsh completion start
function _pip_completion {
local words cword
read -Ac words
read -cn cword
reply=( $( COMP_WORDS="$words[*]" \
COMP_CWORD=$(( cword-1 )) \
PIP_AUTO_COMPLETE=1 $words[1] ) )
}
compctl -K _pip_completion pip
# pip zsh completion end
if [[ -a $HOME/.zshsrc ]]; then
source $HOME/.zshsrc
else
printf "No zshsrc\nOne has been created"
touch $HOME/.zshsrc
fi
export PATH="$HOME/.anyenv/bin:$PATH"
eval "$(anyenv init -)"