From f4351436a0bf32731f9ad9b0e6f6195d3816195d Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 1 Jun 2026 16:20:58 -0700 Subject: [PATCH] restore nvim as submodule (kickstart config); home-manager no longer owns nvim --- .gitmodules | 3 +++ Makefile | 7 +++++-- nvim/nvim | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) create mode 160000 nvim/nvim diff --git a/.gitmodules b/.gitmodules index 7ba3c54..a67e6af 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "tmux/.config/tmux/oh-my-tmux"] path = tmux/.config/tmux/oh-my-tmux url = https://github.com/gpakosz/.tmux.git +[submodule "nvim/nvim"] + path = nvim/nvim + url = https://git.publicmatt.com/public/nvim.git diff --git a/Makefile b/Makefile index 93eb876..059f831 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -.PHONY: all git shell tmux submodules p10k +.PHONY: all nvim git shell tmux submodules p10k ZSH_CUSTOM ?= ${HOME}/.oh-my-zsh/custom -all: submodules git shell tmux +all: submodules nvim git shell tmux submodules: git submodule update --init --recursive @@ -10,6 +10,9 @@ submodules: git: stow git -t ${HOME} +nvim: + stow nvim -t ${HOME}/.config/ + shell: p10k stow shell -t ${HOME} diff --git a/nvim/nvim b/nvim/nvim new file mode 160000 index 0000000..b2585d6 --- /dev/null +++ b/nvim/nvim @@ -0,0 +1 @@ +Subproject commit b2585d6634e05e322b9faf800a56d628ff124ca1