From 2013543322275db159cb7ced884f56552a3b43a2 Mon Sep 17 00:00:00 2001 From: Miranda Marquez Date: Tue, 4 Jun 2024 12:16:57 -0800 Subject: [PATCH] add eat integration for emacs --- modules/shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/shell.nix b/modules/shell.nix index fd87a04..d4c0a3a 100644 --- a/modules/shell.nix +++ b/modules/shell.nix @@ -20,6 +20,8 @@ }; initExtraFirst = '' export EDITOR=emacs\ -nw + [ -n "$EAT_SHELL_INTEGRATION_DIR" ] && \ + source "$EAT_SHELL_INTEGRATION_DIR/zsh" source ~/.p10k.zsh ''; enableCompletion = true;