-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
33 lines (24 loc) · 781 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
source $HOME/dotfiles/antigen.zsh
export ERL_AFLAGS="-kernel shell_history enabled"
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle mix
antigen bundle heroku
antigen bundle npm
antigen bundle docker-compose
antigen bundle fabiokiatkowski/exercism.plugin.zsh
antigen bundle zsh-users/zsh-completions
antigen bundle droctothorpe/kubecolor
antigen bundle mattbangert/kubectl-zsh-plugin
# Load the theme.
antigen theme pygmalion
# Tell antigen that you're done.
antigen apply
autoload -U +X compinit && compinit
autoload -U +X bashcompinit && bashcompinit
. $HOME/dotfiles/custom.sh
export LESS=-FRX
export EDITOR=nano
alias rest-net="sudo /etc/init.d/network-manager restart"