This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
63 lines (48 loc) · 1.49 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
# ZSH Packages
## Load antigen
source ~/.antigen/antigen.zsh
## Load oh-my-zsh
antigen use oh-my-zsh
## Load the oh-my-zsh theme
# antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train
antigen theme evan
## Load bullet-train settings
source ${HOME}/.shell/bullet-train
## Load bundles
### Default repo bundles
antigen bundle git
antigen bundle heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
antigen bundle autojump
antigen bundle npm
antigen bundle sudo
antigen bundle last-working-dir
antigen bundle common-aliases
### Various other bundles
antigen bundle arzzen/calc.plugin.zsh
antigen bundle unixorn/autoupdate-antigen.zshplugin
antigen bundle peterhurford/git-it-on.zsh
antigen bundle jimhester/per-directory-history
antigen bundle robertzk/send.zsh
antigen bundle hkupty/ssh-agent
### ZSH-Users bundles
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-history-substring-search
antigen bundle zsh-users/zsh-syntax-highlighting
# Apply antigen settings
antigen apply
# Enter the last working directory
lwd
# Load custom functions
source ${HOME}/.shell/helpers
# Define custom aliases
source ${HOME}/.shell/aliases
# Load custom keybindings
source ${HOME}/.shell/keybindings
# Enter the graphical environment
[[ -f ${HOME}/.enter-graphical ]] && ${HOME}/.enter-graphical
# added by travis gem
[ -f /Users/themegatb/.travis/travis.sh ] && source /Users/themegatb/.travis/travis.sh