From 072510df3b74bcc2e0014ee1eab367c96974e475 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sat, 18 Feb 2023 00:05:03 +0100 Subject: [PATCH] Create a shell alias to run emacsclient --- home/cli.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/cli.nix b/home/cli.nix index 5e8d247..12664e3 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -68,6 +68,9 @@ enable = true; enableAutosuggestions = true; # enableSyntaxHighlighting = true; + shellAliases = { + e = "emacsclient -c $@"; + }; oh-my-zsh = { enable = true; plugins = [ "git" ];