-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathconfig.clj
36 lines (36 loc) · 1.57 KB
/
config.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[:site-title "An explorer's log"
:site-description "Random bits and pieces on stuff that I find interesting."
:site-url "http://nakkaya.com"
:in-dir "resources/"
:out-dir "html/"
:default-template "default.clj"
:encoding "UTF-8"
:blog-as-index false
:create-archives false
:atomic-build true
:emacs "emacs"
:emacs-eval ['(require 'package)
'(package-initialize)
'(setq package-list '(htmlize clojure-mode clojure-mode-extra-font-locking))
'(setq package-archives
'(("melpa" . "http://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
'(package-initialize)
'(unless package-archive-contents
(package-refresh-contents))
'(dolist (package package-list)
(unless (package-installed-p package)
(package-install package)))
'(require 'htmlize)
'(require 'org)
'(require 'org-macs)
'(require 'ox-html)
'(require 'ob)
'(global-font-lock-mode 1)
'(require 'clojure-mode)
'(setq org-export-with-section-numbers nil)
'(set-face-foreground 'font-lock-string-face "#afafff")
'(set-face-foreground 'font-lock-keyword-face "#ff5f00")
'(set-face-foreground 'font-lock-function-name-face "#d7af00")
'(set-face-foreground 'font-lock-builtin-face "#afd700")
'(set-face-foreground 'font-lock-comment-face "#3d3d3d")]]