blob: 17c751d8a13fee5b1537c9c5de3a55ba6a239186 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ lib, config, pkgs, ... }:
{
home.packages = with pkgs; [
emacsPgtk
# 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=";
};
}
|