From 23cea5348ef32d6b6c6cbdb5417e8bb53c75fc48 Mon Sep 17 00:00:00 2001 From: bretello Date: Sat, 2 May 2020 15:08:34 +0200 Subject: [PATCH] installer: add ackrc --- install.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a1fc925..f24543b 100755 --- a/install.sh +++ b/install.sh @@ -33,6 +33,10 @@ function install_vimrc { git clone "https://github.com/amix/vimrc.git" "$HOME/.vim_runtime" && sh "$HOME/.vim_runtime/install_awesome_vimrc.sh" || return 1 } +function setup_ackrc { + ln -s "$DOTFILES/ackrc" "~/.ackrc" +} + function setup_vim { ln -s "$DOTFILES/my_configs.vim" "$HOME/.vim_runtime/my_configs.vim" mkdir -p ~/.vim_runtime/my_plugins/twilight/colors @@ -149,7 +153,7 @@ function brethil_dotfiles_setup { # prepare .zshrc exec 3>&1 # save stdout - exec 1>$HOME/.zshrc + exec 1>"$HOME/.zshrc" echo -e "\n\n# brethil's dotfiles:" echo "DOTFILES=$DOTFILES" echo "source \$DOTFILES/brethil_dotfile.sh" @@ -169,6 +173,8 @@ function brethil_dotfiles_setup { setup_git # pdbpp rc setup_pdbprc + # ackrc + setup_ackrc oh_my_zsh_path="$(antibody path robbyrussell/oh-my-zsh)" # Symlink brethil.zsh-theme @@ -177,6 +183,8 @@ function brethil_dotfiles_setup { ln -s $DOTFILES/brethil-minimal.zsh-theme ${oh_my_zsh_path}/themes/ # TODO: powerline? + + }