1.vim with lua support
brew install vim --with-lua --with-override-system-vi
2. requires Git 1.7+ and Vim 7.3+
# https://github.com/spf13/spf13-vim
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
3. update
curl https://j.mp/spf13-vim3 -L -o - | sh
4. uninstall.sh spf13-vim3
#!/usr/bin/env sh
#https://github.com/spf13/spf13-vim/blob/3.0/uninstall.sh
app_dir="$HOME/.spf13-vim-3"
warn() {
echo "$1" >&2
}
die() {
warn "$1"
exit 1
}
rm -rf $HOME/.vimrc
rm -rf $HOME/.vimrc.bundles
rm -rf $HOME/.vim
rm -rf $app_dir
sh .spf13-vim-3/uninstall.sh