spf13-vim/uninstall.sh
Johnny Robeson 507b6b01ac add $app_dir var to point to application root
This is about the same as the %BASE_DIR% var in the windows
scripts
2014-02-10 03:55:33 -05:00

19 lines
186 B
Bash

#!/usr/bin/env sh
app_dir="$HOME/.spf13-vim-3"
warn() {
echo "$1" >&2
}
die() {
warn "$1"
exit 1
}
rm $HOME/.vimrc
rm $HOME/.vimrc.bundles
rm $HOME/.vim
rm -rf $app_dir