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='nano'
31
32# Timestamp in history command ("mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd")
33HIST_STAMPS="dd.mm.yyy"
34
35DISABLE_UNTRACKED_FILES_DIRTY="true"
36
37# ---
38# Appearance
39# ---
40ZSH_THEME="agnoster"
41COMPLETION_WAITING_DOTS="true"
42
43# Would you like to use another custom folder than $ZSH/custom?
44# ZSH_CUSTOM=/path/to/new-custom-folder
45
46# plugins can be found in ~/.oh-my-zsh/plugins/*
47plugins=(git)
48
49source $ZSH/oh-my-zsh.sh
50