dotvim/link_nvim.sh
2021-06-05 21:08:37 -07:00

7 lines
97 B
Bash
Executable File

#!/bin/bash
pushd $PWD/..
if [ ! -d ~/.config/nvim ]; then
ln -s $PWD ~/.config/nvim
fi
popd