# __ # ____ _____/ /_ __________ # /_ / / ___/ __ \/ ___/ ___/ # _ / /_(__ ) / / / / / /__ #(_)___/____/_/ /_/_/ \___/ # # export thingys export ZSH=/home/$USER/.oh-my-zsh export BROWSER=/usr/bin/firefox export EDITOR=/usr/bin/nvim export SSH_KEY_PATH="~/.ssh/id_rsa" export PATH=$PATH:$GOROOT/bin export PATH=$PATH:$HOME/bin export GPG_TTY=$(tty) export INPUTRC=~/.inputrc export PATH=$PATH:$HOME/Leet/Nim/bin export PATH=$PATH:$HOME/.nimble/bin # theme specefic ZSH_THEME="icy" COMPLETION_WAITING_DOTS="true" # plugins plugins=(git zsh-autosuggestions zsh-syntax-highlighting) # sourced scripts source $ZSH/oh-my-zsh.sh source /usr/share/autojump/autojump.zsh source $HOME/.aliases # end and home keys bindkey "^[[1~" beginning-of-line bindkey "^[[4~" end-of-line [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh ## Defer initialization of nvm until nvm, node or a node-dependent command is ## run. Ensure this block is only run once if .bashrc gets sourced multiple times ## by checking whether __init_nvm is a function. #if [ -s "$HOME/.nvm/nvm.sh" ] && [ ! "$(type __init_nvm)" = function ]; then # export NVM_DIR="$HOME/.nvm" # [ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # declare -a __node_commands=('nvm' 'node' 'npm' 'yarn' 'gulp' 'grunt' 'webpack') # function __init_nvm() { # for i in "${__node_commands[@]}"; do unalias $i; done # . "$NVM_DIR"/nvm.sh # unset __node_commands # unset -f __init_nvm # } # for i in "${__node_commands[@]}"; do alias $i='__init_nvm && '$i; done #fi # base16-shell BASE16_SHELL="$HOME/.config/base16-shell/" [ -n "$PS1" ] && \ [ -s "$BASE16_SHELL/profile_helper.sh" ] && \ eval "$("$BASE16_SHELL/profile_helper.sh")"