-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathzshrc
65 lines (48 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
ZSH_THEME="remy"
# ZSH plugins
plugins=(git npm brew django zsh-syntax-highlighting)
# User configuration
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
source $ZSH/oh-my-zsh.sh
# You may need to manually set your language environment
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# disable the default virtualenv prompt change
export VIRTUAL_ENV_DISABLE_PROMPT=1
# Aliases
source ~/.aliases/main
# Check if user has private aliases as well
if [ -f ~/.private_aliases ]; then
source ~/.private_aliases
fi
# OS spesifics
if [ "$(uname)" '==' "Linux" ]; then
source ~/.aliases/linux
#source ~/.scripts/vboxmanage_completion.bash
source ~/.z.sh
# Dircolors
eval `dircolors ~/.dir_colors`
alias ls='ls -F --color=auto'
elif [ "$(uname)" '==' "Darwin" ]; then
source ~/.aliases/osx
# Z
. `brew --prefix`/etc/profile.d/z.sh
# Dircolors
eval `gdircolors ~/.dir_colors`
alias ls='gls --color'
fi
# Dircolors
zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
autoload -Uz compinit
compinit
export NVM_DIR="/Users/andrroy/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
# DrittRuby
export PATH="/usr/local/opt/ruby/bin:$PATH"
# Mono (C# stuff)
export PATH=/Library/Frameworks/Mono.framework/Versions/Current/bin/:${PATH}
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8