We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4199cfe + 72e9349 commit 8ec0da0Copy full SHA for 8ec0da0
config/default.nix
@@ -16,6 +16,7 @@
16
./utils/auto-pairs.nix
17
./utils/autosave.nix
18
./utils/blankline.nix
19
+ ./utils/lazygit.nix
20
./utils/telescope.nix
21
./utils/toggleterm.nix
22
./utils/which-key.nix
@@ -171,6 +172,16 @@
171
172
options.desc = "Go to the previous tab";
173
}
174
175
+ # LazyGit
176
+ {
177
+ mode = "n";
178
+ key = "<leader>lg";
179
+ action = "<cmd>LazyGit<CR>";
180
+ options = {
181
+ desc = "LazyGit";
182
+ };
183
+ }
184
+
185
# Terminal
186
{
187
# Escape terminal mode using ESC
config/utils/lazygit.nix
@@ -0,0 +1,5 @@
1
+{
2
+ plugins.lazygit = {
3
+ enable = true;
4
5
+}
0 commit comments