diff --git a/home/panotaka/common/core/shell/default.nix b/home/panotaka/common/core/shell/default.nix index c65ce41..340fca7 100644 --- a/home/panotaka/common/core/shell/default.nix +++ b/home/panotaka/common/core/shell/default.nix @@ -10,6 +10,7 @@ ./direnv.nix ./eza.nix ./fish.nix + ./lazygit.nix ./rip.nix ./tldr.nix ./zellij.nix diff --git a/home/panotaka/common/core/shell/lazygit.nix b/home/panotaka/common/core/shell/lazygit.nix new file mode 100644 index 0000000..0c6e246 --- /dev/null +++ b/home/panotaka/common/core/shell/lazygit.nix @@ -0,0 +1,7 @@ +{ + programs.lazygit.enable = true; + + home.shellAliases = { + lgit = "lazygit"; + }; +}