✨ prettify
parent
27fb92b8bd
commit
f1281736a8
|
@ -4,20 +4,18 @@ let
|
||||||
emacs = with pkgs;
|
emacs = with pkgs;
|
||||||
((emacsPackagesNgGen emacsGcc).emacsWithPackages
|
((emacsPackagesNgGen emacsGcc).emacsWithPackages
|
||||||
(epkgs: [ epkgs.vterm epkgs.emacsql-sqlite3 ]));
|
(epkgs: [ epkgs.vterm epkgs.emacsql-sqlite3 ]));
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
|
fonts.fonts = [ pkgs.emacs-all-the-icons-fonts ];
|
||||||
|
|
||||||
home-manager.users.moritz = {
|
home-manager.users.moritz = {
|
||||||
home.sessionPath = [ "/home/moritz/.config/emacs/bin/" ];
|
home.sessionPath = [ "/home/moritz/.config/emacs/bin/" ];
|
||||||
programs.emacs.enable = true;
|
|
||||||
programs.emacs.package = emacs;
|
|
||||||
services.emacs.enable = true;
|
services.emacs.enable = true;
|
||||||
services.emacs.package = emacs;
|
services.emacs.package = emacs;
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
## Emacs itself
|
## Emacs itself
|
||||||
binutils # native-comp needs 'as', provided by this
|
binutils # native-comp needs 'as', provided by this
|
||||||
|
emacs
|
||||||
|
|
||||||
## Doom dependencies
|
## Doom dependencies
|
||||||
git
|
git
|
||||||
|
@ -36,23 +34,30 @@ in
|
||||||
hunspellDicts.en_GB-ize
|
hunspellDicts.en_GB-ize
|
||||||
hunspellDicts.en_US
|
hunspellDicts.en_US
|
||||||
hunspellDicts.de_DE
|
hunspellDicts.de_DE
|
||||||
|
|
||||||
# :checkers grammar
|
# :checkers grammar
|
||||||
languagetool
|
languagetool
|
||||||
|
|
||||||
# :tools lookup & :lang org +roam
|
# :tools lookup & :lang org +roam
|
||||||
sqlite
|
sqlite
|
||||||
wordnet
|
wordnet
|
||||||
graphviz
|
graphviz
|
||||||
|
|
||||||
# :lang latex & :lang org (latex previews)
|
# :lang latex & :lang org (latex previews)
|
||||||
texlive.combined.scheme-full
|
texlive.combined.scheme-full
|
||||||
|
|
||||||
# :lang nix
|
# :lang nix
|
||||||
nixfmt # for formating nix
|
nixfmt # for formating nix
|
||||||
|
|
||||||
# :lang markdown
|
# :lang markdown
|
||||||
pandoc
|
pandoc
|
||||||
|
|
||||||
# :app everywhere
|
# :app everywhere
|
||||||
xdotool
|
xdotool
|
||||||
xorg.xwininfo
|
xorg.xwininfo
|
||||||
xclip
|
xclip
|
||||||
xorg.xprop
|
xorg.xprop
|
||||||
|
|
||||||
# :lang python
|
# :lang python
|
||||||
python-language-server
|
python-language-server
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue