-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
52 lines (38 loc) · 1015 Bytes
/
.zshrc
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
50
51
52
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="lambda"
HIST_STAMPS="yyyy-mm-dd"
plugins=(git extract docker-compose)
source $ZSH/oh-my-zsh.sh
# lv_LV.UTF-8, en_US.UTF-8
export LANG=en_US.UTF-8
export LANGUAGE=en_US:en
export LC_ALL=en_US.UTF-8
export LC_COLLATE=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export LC_MESSAGES=en_US.UTF-8
export LC_MONETARY=lv_LV.UTF-8
export LC_NUMERIC=lv_LV.UTF-8
export LC_TIME=lv_LV.UTF-8
export EDITOR=vim
if [[ -d "$HOME/.bin" ]]; then
export PATH="$HOME/.bin:$PATH"
fi
if [[ -f /usr/local/bin/rbenv ]]; then
eval "$(rbenv init -)"
fi
if [[ -f "$HOME/.rbenv/bin/rbenv" ]]; then
export PATH="$HOME/.rbenv/bin:$PATH"
fi
if [ -x "$(command -v rbenv)" ]; then
eval "$(rbenv init -)"
fi
if [[ -d "$HOME/.yarn/bin" ]]; then
export PATH="$HOME/.yarn/bin:$PATH"
fi
if [[ -f "$HOME/.aliases" ]]; then
source $HOME/.aliases
fi
if [ -x "$(command -v direnv)" ]; then
eval "$(direnv hook zsh)"
fi
export PATH="/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH"