mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
22 lines
336 B
Nix
22 lines
336 B
Nix
|
{pkgs, ...}: {
|
||
|
extraPlugins = with pkgs.vimPlugins; [
|
||
|
lazygit-nvim
|
||
|
];
|
||
|
|
||
|
extraConfigLua = ''
|
||
|
require("telescope").load_extension("lazygit")
|
||
|
'';
|
||
|
|
||
|
keymaps = [
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>gg";
|
||
|
action = "<cmd>LazyGit<CR>";
|
||
|
options = {
|
||
|
desc = "LazyGit (root dir)";
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
|