diff --git a/doom.d/init.el b/doom.d/init.el index 70bc66c..d7f130a 100644 --- a/doom.d/init.el +++ b/doom.d/init.el @@ -104,7 +104,7 @@ ;;prodigy ; FIXME managing external services & code builders ;;terraform ; infrastructure as code ;;tmux ; an API for interacting with tmux - ;;tree-sitter ; syntax and parsing, sitting in a tree... + tree-sitter ; syntax and parsing, sitting in a tree... ;;upload ; map local to remote projects via ssh/ftp :os @@ -152,7 +152,7 @@ ;;nim ; python + lisp at the speed of c nix ; I hereby declare "nix geht mehr!" ;;ocaml ; an objective camel - org ; organize your plain life in plain text + (org +pretty) ; organize your plain life in plain text ;;php ; perl's insecure younger brother ;;plantuml ; diagrams for confusing people more ;;graphviz ; diagrams for confusing yourself even more diff --git a/modules/home/all/emacs.nix b/modules/home/all/emacs.nix index fd56e54..4253e36 100644 --- a/modules/home/all/emacs.nix +++ b/modules/home/all/emacs.nix @@ -9,6 +9,11 @@ in inputs.nix-doom-emacs-unstraightened.hmModule ]; + # https://docs.doomemacs.org/v21.12/modules/lang/org/#/prerequisites/nixos + home.packages = [ + pkgs.texlive.combined.scheme-medium + ]; + programs.doom-emacs = { enable = true; emacs = pkgs.emacs30-pgtk;