From 87cc9a7ff8c1c0d00ca2adf222e4e2870ddcfaaa Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Fri, 7 Feb 2025 15:54:08 -0300 Subject: [PATCH] feat: change ex alias to x --- modules/home-manager/devenv.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/devenv.nix b/modules/home-manager/devenv.nix index 618420c..41e5215 100644 --- a/modules/home-manager/devenv.nix +++ b/modules/home-manager/devenv.nix @@ -157,6 +157,6 @@ programs.zsh.syntaxHighlighting.enable = true; programs.zsh.shellAliases = { "lg" = "${lib.getExe config.programs.lazygit.package}"; - "ex" = "${config.home.sessionVariables.EXPLORER}"; + "x" = "${config.home.sessionVariables.EXPLORER}"; }; }