天天看点

.vimrc配置,spf13-vim

1.vim with lua support

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

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" >&
}

die() {
    warn "$1"
    exit 
}

rm -rf $HOME/.vimrc
rm -rf $HOME/.vimrc.bundles
rm -rf $HOME/.vim

rm -rf $app_dir
           

继续阅读