Make sure undo can store files

This commit is contained in:
Andrew Tomaka 2021-11-06 20:59:11 -04:00
parent 89e230f68a
commit 4ebe6b615a
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -2,13 +2,14 @@ STOWED = bin git ruby tmux vim zsh alacritty atomaka
all: install all: install
install: plug-vim initialize-colors install: vim-setup initialize-colors
stow $(STOWED) stow $(STOWED)
uninstall: uninstall:
stow -D $(STOWED) stow -D $(STOWED)
plug-vim: vim-setup:
mkdir -p $$HOME/.vim/undo
if test ! -f ~/.vim/autoload/plug.vim ; then \ if test ! -f ~/.vim/autoload/plug.vim ; then \
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ; \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim ; \