add nix support

This commit is contained in:
Jacob Janzen 2024-09-27 18:34:35 -05:00
parent dd77b86915
commit 613ed24c13
2 changed files with 4 additions and 0 deletions

View file

@ -422,6 +422,9 @@ pre.src-desktop:before {
pre.src-yaml:before { pre.src-yaml:before {
content: "YAML"; content: "YAML";
} }
pre.src-nix:before {
content: "nix";
}
/* add a generic configuration mode; LaTeX export needs an additional /* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */ (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */
pre.src-conf:before { pre.src-conf:before {

View file

@ -17,6 +17,7 @@
(use-package htmlize (use-package htmlize
:after org) :after org)
(use-package yaml-mode) (use-package yaml-mode)
(use-package nix-mode)
(use-package plz) (use-package plz)
(require 'org) (require 'org)