dotfiles/install.zsh

27 lines
529 B
Bash
Raw Normal View History

#!/usr/bin/env zsh
install_dotfile() {
local dest="$1"
2019-05-20 21:30:50 +00:00
local contents="$2"
if [[ -f "$dest" ]]; then
mv -vi "$dest" "$dest.dmitmel-dotfiles-backup"
fi
mkdir -p "${dest:h}"
2019-05-20 21:30:50 +00:00
echo "$contents" > "$dest"
}
# ZSH
for zsh_file_name in zshrc; do
2019-05-20 21:30:50 +00:00
install_dotfile "$HOME/.$zsh_file_name" '
#!/usr/bin/env zsh
source "$PWD/zsh/$zsh_file_name"
2019-05-20 21:30:50 +00:00
'
done
unset zsh_file_name
# Neovim
2019-05-20 21:30:50 +00:00
install_dotfile ~/.config/nvim/init.vim 'source $PWD/nvim/init.vim'
install_dotfile ~/.config/nvim/ginit.vim 'source $PWD/nvim/ginit.vim'