87 lines
2.4 KiB
Bash
87 lines
2.4 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 zsh-users/zsh-completions
|
|
antigen bundle asdf
|
|
|
|
antigen theme https://github.com/denysdovhan/spaceship-prompt spaceship
|
|
|
|
antigen apply
|
|
alias 'onedrive-journal'="journalctl --user-unit onedrive -f"
|
|
alias exa="exa -l --git"
|
|
|
|
# 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 TERM="tmux-256color"
|
|
export SHELL="/bin/zsh"
|
|
# asdf
|
|
. $HOME/.asdf/asdf.sh
|
|
. $HOME/.asdf/completions/asdf.bash
|
|
|
|
export PATH="$(yarn global bin):$PATH"
|
|
|
|
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
|
|
export SDKMAN_DIR="$HOME/.sdkman"
|
|
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
|
|
|
|
alias default_tmux="tmux new-session -A -s DefaultSession"
|