diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-20 14:38:17 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-20 14:42:08 -0700 |
commit | 2f3cb5cc8abe9a79fb55951bde2200321f13f8ad (patch) | |
tree | 85d6f33bf3830853f37cd58c85ec3a6ba7002483 | |
parent | doc(home/git): comment some of the options (diff) | |
download | world-2f3cb5cc8abe9a79fb55951bde2200321f13f8ad.tar.gz |
fix(home/emacs): don't create frame for emacsclient
Use the existing one. Change-Id: I3983aa234528a97ebab87982c8af88472a5a2933 Reviewed-on: https://cl.fcuny.net/c/world/+/462 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | home/emacs/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/emacs/default.nix b/home/emacs/default.nix index 96659dc..073e7bd 100644 --- a/home/emacs/default.nix +++ b/home/emacs/default.nix @@ -15,8 +15,8 @@ in ]; sessionVariables = { - EDITOR = "emacsclient -c -a="; - VISUAL = "emacsclient -c -a="; + EDITOR = "emacsclient -a="; + VISUAL = "emacsclient -a="; }; }; } |