We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c98a1 commit fd3e597Copy full SHA for fd3e597
Dockerfile
@@ -0,0 +1,7 @@
1
+FROM ryukinix/lerax:latest
2
+
3
+# NOTE: z prefix makes sure is the last file to load.
4
+# this avoid variables to be overridden
5
+COPY setup.el /root/.emacs.d/personal/z-setup.el
6
+WORKDIR /workspace
7
+ENTRYPOINT ["emacs"]
setup.el
@@ -0,0 +1,6 @@
+(require 'org)
+(with-eval-after-load 'org
+ (setq org-html-htmlize-output-type 'css) ; default: 'inline-css
+ (setq org-html-htmlize-font-prefix "org-") ; default: "org-"
+ )
0 commit comments