diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-09-27 18:34:35 -0500 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-09-27 18:34:35 -0500 |
commit | 613ed24c13366c5af141a90a3a9402b724a6b8c5 (patch) | |
tree | 0ef9c2969beb6a46c889fac0c66a23a464d5f039 | |
parent | dd77b8691543d8208c75751fb3edf378f2d3d73b (diff) |
add nix support
-rw-r--r-- | css/stylesheet.css | 3 | ||||
-rw-r--r-- | publish.el | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/css/stylesheet.css b/css/stylesheet.css index c292e5a..c60a35b 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -422,6 +422,9 @@ pre.src-desktop:before { pre.src-yaml:before { content: "YAML"; } +pre.src-nix:before { + content: "nix"; +} /* add a generic configuration mode; LaTeX export needs an additional (add-to-list 'org-latex-listings-langs '(conf \" \")) in .emacs */ pre.src-conf:before { @@ -17,6 +17,7 @@ (use-package htmlize :after org) (use-package yaml-mode) +(use-package nix-mode) (use-package plz) (require 'org) |