From 8bc7402721308336f2609aae985a7a076416aa22 Mon Sep 17 00:00:00 2001 From: jao Date: Fri, 8 Apr 2022 02:04:13 +0100 Subject: themes: slightly more spartan light theme --- init.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'init.org') diff --git a/init.org b/init.org index 4431c81..fcef5bb 100644 --- a/init.org +++ b/init.org @@ -381,9 +381,12 @@ (require 'jao-themes) + (defvar jao-theme-dark 'jao-dark) + (defvar jao-theme-light 'jao-light) + (defun jao-themes-setup () (let ((dark (jao-colors-scheme-dark-p))) - (load-theme (if dark 'jao-dark 'jao-light) t))) + (load-theme (if dark jao-theme-dark jao-theme-light) t))) (when (and window-system (not (eq window-system 'pgtk))) (jao-themes-setup)) @@ -2493,6 +2496,7 @@ cider-auto-select-error-buffer nil cider-auto-select-test-report-buffer nil cider-eldoc-display-for-symbol-at-point t + cider-eldoc-ns-function #'cider-last-ns-segment cider-enrich-classpath nil cider-lein-parameters "repl :headless :host localhost" cider-mode-line " รท" -- cgit v1.2.3