prettify

dev-docs
Moritz Böhme 2022-02-11 22:25:07 +01:00
parent 27fb92b8bd
commit f1281736a8
No known key found for this signature in database
GPG Key ID: 213820E2795F5CF5
1 changed files with 9 additions and 4 deletions

View File

@ -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
]; ];