aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nix/users/fcuny/configs/emacs/init.el6
-rw-r--r--nix/users/fcuny/emacs.nix2
2 files changed, 3 insertions, 5 deletions
diff --git a/nix/users/fcuny/configs/emacs/init.el b/nix/users/fcuny/configs/emacs/init.el
index 0c5e3dd..edbbe40 100644
--- a/nix/users/fcuny/configs/emacs/init.el
+++ b/nix/users/fcuny/configs/emacs/init.el
@@ -69,10 +69,8 @@
(setq imenu-auto-rescan t))
(use-package exec-path-from-shell
- :config
- (exec-path-from-shell-initialize)
- :custom
- (exec-path-from-shell-variables '("ASPELL_CONF")))
+ :init
+ (exec-path-from-shell-initialize))
(use-package ibuffer
:bind ("C-x C-b" . ibuffer)
diff --git a/nix/users/fcuny/emacs.nix b/nix/users/fcuny/emacs.nix
index 36c93ac..f7f83d6 100644
--- a/nix/users/fcuny/emacs.nix
+++ b/nix/users/fcuny/emacs.nix
@@ -63,6 +63,6 @@ in
];
home.sessionVariables = {
- EDITOR = "emacsclient -t";
+ EDITOR = "${pkgs.emacs}/bin/emacsclient -a=";
};
}