summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org7
1 files changed, 4 insertions, 3 deletions
diff --git a/init.org b/init.org
index 3f4ed96..41936d9 100644
--- a/init.org
+++ b/init.org
@@ -420,8 +420,9 @@
(defun jao-themes-setup ()
(let ((dark (jao-colors-scheme-dark-p)))
- (when window-system
- (load-theme (if dark 'jao-greenish 'jao-light) t))))
+ (if window-system
+ (load-theme (if dark 'jao-greenish 'jao-light) t)
+ (load-theme 'modus-vivendi t))))
(when (not (eq window-system 'pgtk)) (jao-themes-setup))
@@ -646,7 +647,7 @@
(when (jao-colors-scheme-dark-p)
(setq jao-minibuffer-active-buffer-line-color "grey35"
jao-minibuffer-inactive-buffer-line-color "grey20"))
- (jao-minibuffer-add-mode-line 90)
+ (when window-system (jao-minibuffer-add-mode-line 90))
#+end_src
*** Mode line toggle
#+begin_src emacs-lisp