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