mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-10-31 18:01:30 +01:00
installer: add ackrc
This commit is contained in:
parent
aa729b92e9
commit
23cea5348e
10
install.sh
10
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
|
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 {
|
function setup_vim {
|
||||||
ln -s "$DOTFILES/my_configs.vim" "$HOME/.vim_runtime/my_configs.vim"
|
ln -s "$DOTFILES/my_configs.vim" "$HOME/.vim_runtime/my_configs.vim"
|
||||||
mkdir -p ~/.vim_runtime/my_plugins/twilight/colors
|
mkdir -p ~/.vim_runtime/my_plugins/twilight/colors
|
||||||
|
@ -149,7 +153,7 @@ function brethil_dotfiles_setup {
|
||||||
|
|
||||||
# prepare .zshrc
|
# prepare .zshrc
|
||||||
exec 3>&1 # save stdout
|
exec 3>&1 # save stdout
|
||||||
exec 1>$HOME/.zshrc
|
exec 1>"$HOME/.zshrc"
|
||||||
echo -e "\n\n# brethil's dotfiles:"
|
echo -e "\n\n# brethil's dotfiles:"
|
||||||
echo "DOTFILES=$DOTFILES"
|
echo "DOTFILES=$DOTFILES"
|
||||||
echo "source \$DOTFILES/brethil_dotfile.sh"
|
echo "source \$DOTFILES/brethil_dotfile.sh"
|
||||||
|
@ -169,6 +173,8 @@ function brethil_dotfiles_setup {
|
||||||
setup_git
|
setup_git
|
||||||
# pdbpp rc
|
# pdbpp rc
|
||||||
setup_pdbprc
|
setup_pdbprc
|
||||||
|
# ackrc
|
||||||
|
setup_ackrc
|
||||||
|
|
||||||
oh_my_zsh_path="$(antibody path robbyrussell/oh-my-zsh)"
|
oh_my_zsh_path="$(antibody path robbyrussell/oh-my-zsh)"
|
||||||
# Symlink brethil.zsh-theme
|
# Symlink brethil.zsh-theme
|
||||||
|
@ -177,6 +183,8 @@ function brethil_dotfiles_setup {
|
||||||
ln -s $DOTFILES/brethil-minimal.zsh-theme ${oh_my_zsh_path}/themes/
|
ln -s $DOTFILES/brethil-minimal.zsh-theme ${oh_my_zsh_path}/themes/
|
||||||
|
|
||||||
# TODO: powerline?
|
# TODO: powerline?
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user