From 84eab85fa3b8fa8987f92cf81d33b50a4bd9652b Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 16 Mar 2025 11:21:27 -0700 Subject: [PATCH] feat(home/lazygit): Commitizen --- modules/home/programs/tui/lazygit/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/home/programs/tui/lazygit/default.nix b/modules/home/programs/tui/lazygit/default.nix index ea937a5..ffa9dff 100644 --- a/modules/home/programs/tui/lazygit/default.nix +++ b/modules/home/programs/tui/lazygit/default.nix @@ -23,6 +23,17 @@ in { }; os.editPreset = "nvim-remote"; + + customCommands = [ + { + key = "C"; + command = "cz c"; + description = "commit with commitizen"; + context = "files"; + loadingText = "opening commitizen tool"; + subprocess = true; + } + ]; }; };