From 4a02e072a7fef193067db9986da157950c014385 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Thu, 6 Mar 2025 00:14:57 -0300 Subject: [PATCH] chore(neovim): add dev plugin paths to lazy.nvim Use local `nvim-ufo` until the PR I submitted gets approved `nix-store.nvim` is a plugin I maintain, so its useful to have it overwritten. --- modules/home-manager/programs/neovim/lua/lazy_setup.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/home-manager/programs/neovim/lua/lazy_setup.lua b/modules/home-manager/programs/neovim/lua/lazy_setup.lua index 2abb3b7..4294456 100644 --- a/modules/home-manager/programs/neovim/lua/lazy_setup.lua +++ b/modules/home-manager/programs/neovim/lua/lazy_setup.lua @@ -28,4 +28,11 @@ require("lazy").setup({ }, }, }, + dev = { + path = "/mnt/internal/repos", + patterns = { + "nvim-ufo", + "nix-store.nvim", + }, + }, } --[[@as LazyConfig]])