-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrc.zsh
48 lines (32 loc) · 1.33 KB
/
rc.zsh
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
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.zsh
# Set name of the theme to load.
ZSH_THEME="norm-mod"
if [ "$VENDOR" = "unknown" ]; then
VENDOR="pc"
fi
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Use zkbd extension
USE_ZKBD="false"
# Which plugins would you like to load? (plugins can be found in ~/.zsh/plugins/*)
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git github git-extras git-flow go autoenv brew brew-cask rails ruby rvm rake bundler gem extract)
source $ZSH/configure.zsh
# Add RVM to PATH for scripting
PATH=$PATH:/usr/local/rvm/bin
#FZF config
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
# enable xon terminal - vim Ctrl-S bug
stty -ixon
export PATH="$HOME/.rvm/bin:$PATH" # Add RVM to PATH for scripting
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
[ -f ~/.zshrc.local ] && source ~/.zshrc.local