diff --git a/config/default.nix b/config/default.nix index 2674139..9b0ee68 100644 --- a/config/default.nix +++ b/config/default.nix @@ -16,6 +16,7 @@ ./utils/auto-pairs.nix ./utils/autosave.nix ./utils/blankline.nix + ./utils/lazygit.nix ./utils/telescope.nix ./utils/toggleterm.nix ./utils/which-key.nix @@ -171,6 +172,16 @@ options.desc = "Go to the previous tab"; } + # LazyGit + { + mode = "n"; + key = "lg"; + action = "LazyGit"; + options = { + desc = "LazyGit"; + }; + } + # Terminal { # Escape terminal mode using ESC diff --git a/config/utils/lazygit.nix b/config/utils/lazygit.nix new file mode 100644 index 0000000..8347902 --- /dev/null +++ b/config/utils/lazygit.nix @@ -0,0 +1,5 @@ +{ + plugins.lazygit = { + enable = true; + }; +}