Working on vim settings

This commit is contained in:
2021-12-31 14:04:23 -05:00
parent 8841d92e87
commit 9b10825aa0
6 changed files with 121 additions and 107 deletions

15
vim/setup Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -e
if test -z "$(type vim)"; then
echo "Does not look like you have vim installed."
exit 1
fi
mkdir "${HOME}/.vim" |true
ln -sfv "${PWD}/.vim/vimrc" "${HOME}/.vim/vimrc"