diff --git a/install.conf.yaml b/install.conf.yaml index ab4931e..b04c0b3 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -7,6 +7,7 @@ - link: ~/.tmux.conf: tmux.conf ~/.vim: vim + ~/.zshrc: zsh/zshrc - shell: - [git submodule update --init --recursive, Installing submodules] diff --git a/zsh/zshrc b/zsh/zshrc new file mode 100644 index 0000000..59ed118 --- /dev/null +++ b/zsh/zshrc @@ -0,0 +1,7 @@ +if type brew &>/dev/null +then + FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}" + + autoload -Uz compinit + compinit +fi