From d7913c1f9b5a5bf1a1bfd8e2c0e268ddeaa48e50 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 18 Jun 2025 23:18:09 +0200 Subject: [PATCH] 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({})