Commit 436417fbd03e

Vincent Demeester <vincent@sbr.pm>
2020-09-24 19:52:08
tools/emacs: update EDITOR
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 5311944
Changed files (1)
users
vincent
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";
   };
 }