diff --git a/make_symlinks.sh b/make_symlinks.sh index b4670c9..8f6d1cd 100755 --- a/make_symlinks.sh +++ b/make_symlinks.sh @@ -5,3 +5,8 @@ test -f ../.zsh_functions || ln -sv .dotfiles/zsh_functions ../.zsh_functions test -f ../.vimrc || ln -sv .dotfiles/vimrc ../.vimrc test -f ../.gitconfig || ln -sv .dotfiles/gitconfig ../.gitconfig test -f ../.globalgitignore || ln -sv .dotfiles/globalgitignore ../.globalgitignore +if ! test -f ../.config/nvim/init.vim +then + mkdir -vp ../.config/nvim + ln -sv ~/.vimrc ../.config/nvim/init.vim +fi