aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2026-01-11 15:29:25 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2026-01-11 15:29:25 -0500
commit5470a9d188abdcadd950cc1b553bc29f5d3ed34b (patch)
treebe7469167bd00853cc2c3f47ff2df398e3c82a74 /install.sh
parent5aee669b53ee03accf65b6972debfbb54c4b46de (diff)
downloaddotfiles-5470a9d188abdcadd950cc1b553bc29f5d3ed34b.tar.gz
dotfiles-5470a9d188abdcadd950cc1b553bc29f5d3ed34b.tar.xz
Switch to my own 'mquiet' colorscheme for vim and nvim
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/install.sh b/install.sh
index c72aa7a..f9cbd86 100755
--- a/install.sh
+++ b/install.sh
@@ -36,11 +36,11 @@ for _f in dotfiles/* ; do
setLink -s "$src" -d "$dest"
done
-_nvimdir="${confdir}/nvim"
-if ! [ -d "$_nvimdir" ] ; then
- mkdir -p "$_nvimdir"
-fi
-setLink -s "$(pwd)/dotfiles/nvim/init.lua" -d "$_nvimdir/init.lua"
+# if we're using plain vim, we may not have a modern version with xdg
+# support for ~/.config/vim
+setLink -s "$(pwd)/dotfiles/vim" -d "$HOME/.vim"
+
+setLink -s "$(pwd)/dotfiles/nvim" -d "${confdir}/nvim"
_ghosttydir="${confdir}/ghostty"
if ! [ -d "$_ghosttydir" ] ; then