From 9758e40086011d6f2599535e1b73cb68685c8b9e Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Mon, 13 Feb 2023 17:41:12 +0300 Subject: [PATCH] [dotfiles] added zhsrc --- install.conf.yaml | 1 + zsh/zshrc | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 zsh/zshrc 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