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