summaryrefslogtreecommitdiff
path: root/.zshrc
blob: 8446c991e08b29a9b435d4b82a153842f99118f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Path to your oh-my-zsh installation.
if [ ! -d "/usr/share/oh-my-zsh" ]; then
	export ZSH=$HOME/.oh-my-zsh
else
	export ZSH="/usr/share/oh-my-zsh"
fi

# simple, frisk, mrtazz, lambda, maran, robbyrussel, random 
ZSH_THEME=simple

# Uncomment the following line to use case-sensitive completion.
CASE_SENSITIVE="false"

# HYPHEN_INSENSITIVE="true"
DISABLE_AUTO_UPDATE="true"

# Standard plugins can be found in ~/.oh-my-zsh/plugins/*
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
plugins=(git autojump history-substring-search)# timer gem rust cargo)

# Activate oh-my-zsh
source $ZSH/oh-my-zsh.sh

_direnv_hook() {
  eval "$("/usr/bin/direnv" export zsh)";
}
typeset -ag precmd_functions;
if [[ -z ${precmd_functions[(r)_direnv_hook]} ]]; then
  precmd_functions+=_direnv_hook;
fi

# nvm settings (good)
#export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
#[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm

if [[ -a `which kubectl` ]]; then
	source <(kubectl completion zsh 2> /dev/null);
fi

# For X.org
#setxkbmap \
#  -layout de,ir \
#  -variant nodeadkeys,pes_keypad \
#  -option '' \
#  -option 'grp:alt_shift_toggle' \
#  -option 'shift:both_shiftlock' \
#  -option 'lv3:caps_switch' \
#  -option 'terminate:ctrl_alt_bkspc' \
#  -option 'eurosign:e'