From ca29bd85dcff5fae88d06db3aed6daf4e4cfb310 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 22 Oct 2024 18:39:53 -0400 Subject: [PATCH] neovim: add lazygit --- modules/home/all/neovim/default.nix | 1 + modules/home/all/neovim/lazygit.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 modules/home/all/neovim/lazygit.nix 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"; + } + ]; + +}