about summary refs log tree commit diff
path: root/home/profiles/emacs.nix
blob: dbc54116f230ea408b750e153e0c70ea8b71b376 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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=";
  };
}