From 2977182b8c90a6ed3273eb53237bf53c226bc736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Tue, 28 Jun 2022 19:34:46 +0200 Subject: [PATCH] :sparkles: reformat emacs dependencies --- modules/editors/emacs.nix | 47 ++++++++++++++++++++++----------------- 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/modules/editors/emacs.nix b/modules/editors/emacs.nix index 9514f06..028b117 100644 --- a/modules/editors/emacs.nix +++ b/modules/editors/emacs.nix @@ -25,62 +25,69 @@ in { }; home.packages = with pkgs; [ - ## Emacs itself + ### Emacs itself binutils # native-comp needs 'as', provided by this myEmacs - ## Doom dependencies + ### Doom dependencies git (ripgrep.override { withPCRE2 = true; }) gnutls # for TLS connectivity - ## Optional dependencies + ### Optional dependencies fd # faster projectile indexing imagemagick # for image-dired zstd # for undo-fu-session/undo-tree compression - ## Module dependencies - # :checkers spell + ### Module dependencies + ## :checkers + # spell (hunspellWithDicts [ hunspellDicts.en_GB-ize hunspellDicts.en_US hunspellDicts.de_DE ]) - # :checkers grammar + # grammar languagetool - # :tools lookup & :lang org +roam + ## : tools + # lookup & org +roam sqlite gcc # HACK to get emacsqlite binary - wordnet graphviz - # :lang latex & :lang org (latex previews) + ## :lang + # latex & org (latex previews) texlive.combined.scheme-full texlab - # :lang nix + # nix nixfmt # for formating nix rnix-lsp - # :lang markdown + # markdown & org +pandoc pandoc - # :app everywhere + # python + nodePackages.pyright + python-dev + + # sh + nodePackages.bash-language-server + + ## :email + # mu4e + mu + isync + + ## :app + # everywhere xdotool xorg.xwininfo xclip xorg.xprop - - # :lang python - nodePackages.pyright - python-dev - - # :email - mu - isync ]; }; };