55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
# Lines configured by zsh-newuser-install
|
|
HISTFILE=~/.histfile
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
setopt appendhistory extendedglob nomatch notify
|
|
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 VISUAL='nvim'
|
|
export EDITOR='nvim'
|
|
export ANDROID_HOME=$HOME/Android/sdk
|
|
export PATH="$PATH:$ANDROID_HOME/platform-tools"
|
|
export PATH=$HOME/bin:$PATH
|
|
|
|
# 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)
|
|
source $HOME/.zshenv
|