Emacs: Difference between revisions

imported>Binarycat
m fix header level of previous edit
imported>Ivvil
No edit summary
Line 290: Line 290:


all emacs instances should now be grouped together, allowing you to pin it and reliably switch to it with Super+<number>
all emacs instances should now be grouped together, allowing you to pin it and reliably switch to it with Super+<number>
=== Spell checking ===
Because emacs expects the dictionaries to be on the same directory as aspell, they won't be picked up. To fix it install the <code>aspellWithDicts</code> package, specifying the dictionaries you want to use:
{{file|configuration.nix|nix|<nowiki>
{
  environment.systemPackages = with pkgs; [
    (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
  ];
}
</nowiki>}}