Make sure undo can store files
This commit is contained in:
parent
89e230f68a
commit
4ebe6b615a
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -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 ; \
|
||||||
|
|
Loading…
Reference in a new issue