diff --git a/modules/home/all/neovim/default.nix b/modules/home/all/neovim/default.nix index f44fe1d..6f4ae3f 100644 --- a/modules/home/all/neovim/default.nix +++ b/modules/home/all/neovim/default.nix @@ -12,6 +12,7 @@ in imports = [ ./nvim-tree.nix + ./lazygit.nix ]; # Theme diff --git a/modules/home/all/neovim/lazygit.nix b/modules/home/all/neovim/lazygit.nix new file mode 100644 index 0000000..38cdfd2 --- /dev/null +++ b/modules/home/all/neovim/lazygit.nix @@ -0,0 +1,10 @@ +{ + plugins.lazygit.enable = true; + keymaps = [ + { + action = "LazyGit"; + key = "gg"; + } + ]; + +}