update vimrc stuff

This commit is contained in:
2018-03-06 17:27:43 -05:00
parent f4f3a7205e
commit a117661817
2 changed files with 9 additions and 9 deletions

9
vimrc/install.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
mkdir -p ~/.vim/swap
mkdir -p ~/.vim/backup
mkdir -p ~/.vim/undo
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
if [[ ! -e ~/.vimrc ]]; then
cat "$DIR/vimrc" > ~/.vimrc
fi