aboutsummaryrefslogtreecommitdiffstats
path: root/_zshrc
blob: d2dd537531ee1d427689951ef60c9bfd1cb7ba1b (plain)
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
##
## ~/.zshrc
## ZSH configuration file
## oh-my-zsh: http://ohmyz.sh/
##
## ZSH reads this file in all interactive shells, whether they are
## login shells or not.
##
## Credits:
## [1] https://github.com/spicycode/ze-best-zsh-config
## [2] Zsh Configuration from the Ground Up
##     http://zanshin.net/2013/02/02/zsh-configuration-from-the-ground-up/
##
## Aaron LI
## Created: 2014-05-31
## Updated: 2016-01-30
##


source ~/.zsh/checks.zsh
source ~/.zsh/colors.zsh
source ~/.zsh/setopt.zsh
source ~/.zsh/exports.zsh
source ~/.zsh/prompt.zsh
source ~/.zsh/completion.zsh
source ~/.zsh/aliases.zsh
source ~/.zsh/bindkeys.zsh
source ~/.zsh/functions.zsh
source ~/.zsh/history.zsh
source ~/.zsh/hooks.zsh

## Local configurations
[ -r ~/.zshrc.local ] && source ~/.zshrc.local


# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: #