makefile(vim)

This commit is contained in:
TheK4n 2021-12-29 11:39:45 +00:00
parent cef4b0534f
commit 0596089111

View File

@ -18,9 +18,12 @@ install:
ln -s $(PWD)/.tmux.conf ~ || true ln -s $(PWD)/.tmux.conf ~ || true
vim: vim:
ln -s $(PWD)/.vim ~ && ln -s $(PWD)/.vim/.vimrc ~ || true ln -s $(PWD)/.vim ~ && \
mkdir -p ~/.config/nvim && ln -s $(PWD)/.vim/.vimrc ~/.config/nvim/init.vim || true ln -s $(PWD)/.vim/.vimrc ~ && \
git clone https://github.com/VundleVim/Vundle.vim.git $(PWD)/.vim/bundle/Vundle.vim && vim +PluginInstall +qall mkdir -p ~/.config/nvim && \
ln -s $(PWD)/.vim/.vimrc ~/.config/nvim/init.vim && \
git clone https://github.com/VundleVim/Vundle.vim.git $(PWD)/.vim/bundle/Vundle.vim && \
vim +PluginInstall +qall
clean: clean:
rm -rf .ssh doc etc scripts img .gitignore README.md .git rm -rf .ssh doc etc scripts img .gitignore README.md .git