mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
16 lines
205 B
Bash
Executable File
16 lines
205 B
Bash
Executable File
#!/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" >/dev/null 2>&1
|
|
ln -sfv "${PWD}/.vim/vimrc" "${HOME}/.vim/vimrc"
|
|
|
|
|
|
|
|
|