# Path to oh-my-zsh installation export ZSH=/home/andrew/.oh-my-zsh export GOPATH=$HOME/.golang export PATH=$GOPATH:$GOPATH/bin:$PATH export PATH=$HOME/scripts:$PATH # --- # Keybinds # --- # Ctrl+Bksp deletes preceding word bindkey '^H' backward-delete-word # Ctrl+Del deletes succeeding word bindkey '^[[3^' delete-word <<<<<<< HEAD # Ctrl+left arrow moves cursor one word left bindkey '^[Od' backward-word # Ctrl+right arrow moves cursor one word right bindkey '^[Oc' forward-word # Custom delimeters for delete-word WORDCHARS='*?_-.[]~=&;!#$%^(){}<>' # --- # Behaviour # --- #Allow bash-style comments setopt interactivecomments export EDITOR='vim' # Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd") HIST_STAMPS="dd.mm.yyyy" DISABLE_UNTRACKED_FILES_DIRTY="true" alias cat=bat # --- # Appearance # --- ZSH_THEME="custom" COMPLETION_WAITING_DOTS="true" # plugins can be found in ~/.oh-my-zsh/plugins/* plugins=(git) source $ZSH/oh-my-zsh.sh