This commit is contained in:
2025-10-12 19:50:29 +00:00
parent c367bf234f
commit 60242632d0
7 changed files with 113 additions and 7 deletions

View File

@@ -8,6 +8,7 @@
./plugins/conform.nix
./plugins/grug-far.nix
./plugins/lsp.nix
./plugins/neogit.nix
./plugins/mini.nix
./plugins/supermaven.nix
./plugins/oil.nix

View File

@@ -94,6 +94,16 @@
options.desc = "Symbols (LSP, buffer)";
}
# g - git
{
mode = "n";
key = "<leader>gg";
action.__raw = ''
function()
require('neogit').open({})
end
'';
options.desc = "Neogit";
}
# l - lsp/formatter
{

View File

@@ -0,0 +1,13 @@
{
programs.nixvim.plugins.neogit = {
enable = true;
settings = {
disable_signs = false;
integrations = {
diffview = true;
telescope = true;
};
use_telescope = true;
};
};
}