dotfiles/zsh/zshrc
2018-05-25 11:14:58 -04:00

55 lines
1.6 KiB
Bash

# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory extendedglob nomatch notify
unsetopt autocd beep
bindkey -e
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 VISUAL='nvim'
export EDITOR='nvim'
export ANDROID_HOME='/Users/acicchetti/Android/sdk'
export PATH="$PATH:$ANDROID_HOME/platform-tools"
export PATH=$HOME/.ellipsis/bin:$PATH
export PATH=$HOME/bin:$PATH
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_172.jdk/Contents/Home
# 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"
eval $(thefuck --alias oops)
eval "$(pyenv init -)"