-
Notifications
You must be signed in to change notification settings - Fork 73
/
.zshrc
36 lines (24 loc) · 1.07 KB
/
.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
export ZSH=~/.zsh
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Load all of the config files in ~/oh-my-zsh that end in .zsh
for config_file ($ZSH/lib/*.zsh) source $config_file
# Extend Autocomplete Search Path
fpath=($HOME/.zsh/lib/completions $fpath)
# Load and run compinit
autoload -U compinit
compinit -i
PATH=/usr/local/bin:/usr/local/sbin:$PATH
# Go Path related exports
export GOPATH=~/Projekte/Go
export PATH=$PATH:$GOPATH/bin
# Disable Google Analytics for Homebrew
export HOMEBREW_NO_GOOGLE_ANALYTICS=1
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
export FZF_DEFAULT_COMMAND='fd --type f'
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/hukl/src/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/hukl/src/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/hukl/src/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/hukl/src/google-cloud-sdk/completion.zsh.inc'; fi