about summary refs log tree commit diff
path: root/home/emacs.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-14 17:58:19 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-14 17:58:19 -0800
commit3f1bd983565dfd40f1ba2c3d602cf838f35de6e5 (patch)
tree7ff92c4f1dbed4ad07462b2b3453352096bcaad3 /home/emacs.nix
parentupdate the main documentation (diff)
downloadworld-3f1bd983565dfd40f1ba2c3d602cf838f35de6e5.tar.gz
delete more unused configurations
Diffstat (limited to '')
-rw-r--r--home/emacs.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/home/emacs.nix b/home/emacs.nix
deleted file mode 100644
index dbc5411..0000000
--- a/home/emacs.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ lib, config, pkgs, ... }:
-{
-  home.packages = with pkgs; [
-    # see https://github.com/hlissner/doom-emacs/issues/4138
-    (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
-  ];
-
-  home.sessionVariables = {
-    EDITOR = "emacsclient -a=";
-    VISUAL = "emacsclient -a=";
-  };
-}