Run `nix fmt` at the root of the repository to format all files. I've done this on my fork and this will help me merge your changes later without having to deal with un-formatted files.
21 lines
337 B
Nix
21 lines
337 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)";
|
|
};
|
|
}
|
|
];
|
|
}
|