commit 436417fbd03ebe30df41be2ad1c557d350450341 parent 53119442cfa9cd3b04afa37f15096fb39f1d929c Author: Vincent Demeester <vincent@sbr.pm> Date: Thu, 24 Sep 2020 18:52:08 +0100 tools/emacs: update EDITOR Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | users/vincent/dev/emacs.nix | | | 6 | ++---- |
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/users/vincent/dev/emacs.nix b/users/vincent/dev/emacs.nix @@ -149,11 +149,9 @@ in package = pkgs.my.emacs; name = "org"; shell = pkgs.zsh + "/bin/zsh -i -c"; - # FIXME do this in the derivation :) - # extraOptions = "--dump-file=${config.home.homeDirectory}/.config/emacs/emacs.pdmp"; }; home.sessionVariables = { - EDITOR = "et"; - ALTERNATE_EDITOR = "et"; + EDITOR = "emacs"; + ALTERNATE_EDITOR = "emacs -nw"; }; }