7c44adc373c4f0a43d1c99a9000f262bcd706676
   1# Path to oh-my-zsh installation
   2export ZSH=/home/andrew/.oh-my-zsh
   3
   4# ---
   5# Keybinds
   6# ---
   7
   8# Ctrl+Bksp deletes preceding word
   9bindkey '^H' backward-delete-word
  10
  11# Ctrl+Del deletes succeeding word
  12bindkey '^[[3^' delete-word
  13
  14# Ctrl+left arrow moves cursor one word left
  15bindkey '^[Od' backward-word
  16
  17# Ctrl+right arrow moves cursor one word right
  18bindkey '^[Oc' forward-word
  19
  20# Custom delimeters for delete-word
  21WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
  22
  23# ---
  24# Behaviour
  25# ---
  26
  27#Allow bash-style comments
  28setopt interactivecomments
  29
  30export EDITOR='vim'
  31
  32# Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
  33HIST_STAMPS="dd.mm.yyyy"
  34
  35DISABLE_UNTRACKED_FILES_DIRTY="true"
  36
  37alias cat=bat
  38
  39# ---
  40# Appearance
  41# ---
  42ZSH_THEME="agnoster"
  43COMPLETION_WAITING_DOTS="true"
  44
  45# plugins can be found in ~/.oh-my-zsh/plugins/*
  46plugins=(git)
  47
  48source $ZSH/oh-my-zsh.sh