From f22de209ce81eebf1fe9055a4d0df45c8c3b3054 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Thu, 10 Aug 2023 22:12:20 -0700 Subject: [PATCH] Add shell aliases for emacsclient --- modules/zsh/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/zsh/default.nix b/modules/zsh/default.nix index 302c439..9889434 100644 --- a/modules/zsh/default.nix +++ b/modules/zsh/default.nix @@ -62,6 +62,11 @@ # completions source ${impurity.link ./completion.zsh} ''; + + shellAliases = { + "ee" = "emacsclient -c"; + "e" = "hyprctl dispatch hy3:makegroup tab, ephemeral && emacsclient -c"; + }; }; }; }