From d7913c1f9b5a5bf1a1bfd8e2c0e268ddeaa48e50 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 18 Jun 2025 23:18:09 +0200 Subject: [PATCH 1/2] feat(neovim): add dropbar plugin --- modules/home-manager/cli/neovim/default.nix | 5 +++++ modules/home-manager/cli/neovim/files/plugins/dropbar.lua | 1 + 2 files changed, 6 insertions(+) create mode 100644 modules/home-manager/cli/neovim/files/plugins/dropbar.lua diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index 1932b2e..0b2222a 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -95,6 +95,11 @@ in type = "lua"; config = (builtins.readFile ./files/plugins/conform.lua); } + { + plugin = dropbar-nvim; + type = "lua"; + config = (builtins.readFile ./files/plugins/dropbar.lua); + } { plugin = fzf-lua; type = "lua"; diff --git a/modules/home-manager/cli/neovim/files/plugins/dropbar.lua b/modules/home-manager/cli/neovim/files/plugins/dropbar.lua new file mode 100644 index 0000000..315a2c4 --- /dev/null +++ b/modules/home-manager/cli/neovim/files/plugins/dropbar.lua @@ -0,0 +1 @@ +require("dropbar").setup({}) From e2bddcf32cde61b143a07cad3ad81e2dd3484318 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 18 Jun 2025 23:27:22 +0200 Subject: [PATCH 2/2] chore(neovim): update k8s-lsp plugin --- modules/home-manager/cli/neovim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index 0b2222a..8d59ea3 100644 --- a/modules/home-manager/cli/neovim/default.nix +++ b/modules/home-manager/cli/neovim/default.nix @@ -15,8 +15,8 @@ let version = "main"; src = builtins.fetchGit { url = "https://github.com/tonychg/nvim-k8s-lsp.git"; - rev = "5e8221cce09cb71b7604c0c7469bf9053dd877ca"; - ref = "feat/add-helm-ls-support"; + rev = "395f6d6b91da55c12b26a2ef1ace7a922a756712"; + ref = "main"; }; }; in