-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc.local
44 lines (38 loc) · 1.05 KB
/
.zshrc.local
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
#ZSH_THEME="muse"
ZSH_THEME="spaceship"
export SPACESHIP_KUBECONTEXT_SHOW=false
export SPACESHIP_PACKAGE_SHOW=false
export SPACESHIP_DOCKER_SHOW=false
export SPACESHIP_GIT_STATUS_COLOR=magenta
source ~/dotfiles/.alias
export GOPATH=~/.go
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=("dir" rbenv vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status time)
export ANSIBLE_COW_SELECTION=random
export ANSIBLE_NOCOWS=1
export VAULT_ADDR=https://vault.faunadb.net
export VISUAL=nvim
export EDITOR="$VISUAL"
source ~/dotfiles/.env
#eval "$(pyenv init -)"
#function preexec() {
# timer=${timer:-$SECONDS}
#}
#
#function precmd() {
# if [ $timer ]; then
# timer_show=$(($SECONDS - $timer))
# export RPROMPT="%F{cyan}${timer_show}s %{$reset_color%}"
# unset timer
# fi
#}
export LANG="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="en_US.UTF-8"
export LC_NUMERIC="en_US.UTF-8"
export LC_TIME="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
bindkey '`' autosuggest-accept