installer: add ackrc

feature/symbol-search
bretello 2020-05-02 15:08:34 +02:00
parent aa729b92e9
commit 23cea5348e
1 changed files with 9 additions and 1 deletions

View File

@ -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?
}