lazygit -> neogit

This commit is contained in:
Artyom Belousov 2026-02-26 17:14:01 +03:00 committed by Artyom Belousov
parent ee60c4e8f1
commit 72a6a3208d
2 changed files with 7 additions and 2 deletions

View file

@ -87,7 +87,6 @@
"!*.git/" "!*.git/"
]; ];
}; };
lazygit.enable = true;
direnv.enable = true; direnv.enable = true;
home-manager.enable = true; home-manager.enable = true;
delta = { delta = {

View file

@ -12,6 +12,7 @@
programs.nixvim = { programs.nixvim = {
enable = true; enable = true;
plugins = { plugins = {
neogit.enable = true;
dropbar.enable = true; dropbar.enable = true;
lspconfig.enable = true; lspconfig.enable = true;
guess-indent.enable = true; guess-indent.enable = true;
@ -99,7 +100,7 @@
{ {
__raw = '' __raw = ''
function() function()
test_method() debug_current_test()
end end
''; '';
} }
@ -178,6 +179,10 @@
action = "<cmd>CopyRelativePath<CR>"; action = "<cmd>CopyRelativePath<CR>";
key = "<leader>p"; key = "<leader>p";
} }
{
action = "<cmd>Neogit<CR>";
key = "<leader>i";
}
]; ];
globals.mapleader = " "; globals.mapleader = " ";
opts = { opts = {
@ -206,6 +211,7 @@
cssls.enable = true; cssls.enable = true;
tailwindcss.enable = true; tailwindcss.enable = true;
vtsls.enable = true; vtsls.enable = true;
lua_ls.enable = true;
}; };
}; };
}; };