From 769f2c91688189b08737aedd45f7f553660b5bef Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Mon, 30 Mar 2026 17:06:32 -0300 Subject: [PATCH] feat(plugins): add overseer.nvim for tasks management --- lua/dot/plugins.lua | 20 ++++++++++++++++++++ package.nix | 3 +++ 2 files changed, 23 insertions(+) diff --git a/lua/dot/plugins.lua b/lua/dot/plugins.lua index 79b3cc3..a2c1a63 100644 --- a/lua/dot/plugins.lua +++ b/lua/dot/plugins.lua @@ -26,6 +26,7 @@ lze.load({ { "nvim-dap", after = function() + require("overseer").enable_dap() require("dot.debugger") end, dep_of = { "godotdev.nvim" }, @@ -179,6 +180,25 @@ lze.load({ ft = { "sh" }, }, + -- Tasks Management + { + "overseer.nvim", + after = function() + require("overseer").setup({ + dap = false, + }) + end, + cmd = { + "OverseerOpen", + "OverseerClose", + "OverseerToggle", + "OverseerRun", + "OverseerShell", + "OverseerTaskAction", + }, + dep_of = { "nvim-dap" }, + }, + -- Treesitter (Syntax Highlighting) { "nvim-treesitter", diff --git a/package.nix b/package.nix index 6fca38e..0bd8216 100644 --- a/package.nix +++ b/package.nix @@ -75,6 +75,9 @@ in # Secrets hiding cloak-nvim + # Taks Management + overseer-nvim + # Appearance catppuccin-nvim indent-blankline-nvim