aboutsummaryrefslogtreecommitdiffstats
path: root/linker.sh
diff options
context:
space:
mode:
Diffstat (limited to 'linker.sh')
-rwxr-xr-xlinker.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/linker.sh b/linker.sh
index a3a290a..7c4b382 100755
--- a/linker.sh
+++ b/linker.sh
@@ -33,3 +33,16 @@ fi
ln -s "$DIR"/.gitconfig ~/.gitconfig
ln -s "$DIR"/.gitignore_global ~/.gitignore_global
+# .config stuff
+cd ~
+if [[ ! -e .config ]] ; then
+ mkdir .config
+fi
+
+# Neovim
+cd .config
+if [[ -e nvim ]] ; then
+ cp -r nvim nvim.original
+fi
+ln -s "$DIR"/nvim ~/.config/nvim
+