up
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
13
modules/home/neovim/plugins/neogit.nix
Normal file
13
modules/home/neovim/plugins/neogit.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
programs.nixvim.plugins.neogit = {
|
||||
enable = true;
|
||||
settings = {
|
||||
disable_signs = false;
|
||||
integrations = {
|
||||
diffview = true;
|
||||
telescope = true;
|
||||
};
|
||||
use_telescope = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user