diff --git a/modules/home-manager/cli/neovim/default.nix b/modules/home-manager/cli/neovim/default.nix index 1932b2e..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 @@ -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({})