Prompt work...mostly, notes

Hack together a prompt that does most of what we did before but is a bit
simpler.  Throw it all into precmd because why not....
This commit is contained in:
Andrew Tomaka 2015-12-10 16:17:09 -05:00
parent db3bfa4036
commit f2676dabcf
7 changed files with 53 additions and 41 deletions

View file

@ -5,13 +5,12 @@ symlinks = $(shell ls $(excludes) `pwd`)
all: install
install: repos submodules $(symlinks)
install: repos $(symlinks)
repos:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/vundle
submodules:
git submodule update --init --recursive
if test ! -d ~/.vim/bundle/vundle ; then \
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/vundle ; \
fi
$(symlinks):
test -e `pwd`/$@ \