aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc.symlink
blob: 9e1d5d264cba89407a107f676ecb62a8004e3e21 (plain) (blame)
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
export DOTFILES=$HOME/dotfiles
export ZSH=$HOME/.oh-my-zsh
export PROJECTS=$HOME/VersionControl

if [[ -a ~/.localrc ]]; then
    source ~/.localrc
fi

for config_file ($DOTFILES/**/*.zsh) source $config_file

ZSH_THEME="agnoster"
plugins=(git)
source $ZSH/oh-my-zsh.sh

source $HOME/.profile

unsetopt ignoreeof

autoload -U compinit
compinit

for config_file ($DOTFILES/**/completion.zsh); do
    if test -f $config_file; then
        source $config_file
    fi
done