From 3544b2a1e976de3b4cfe438d8c59a1a764ca18cc Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 7 Jun 2020 17:37:55 +0200 Subject: [PATCH] added custom theme, fixed font name --- init.org | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/init.org b/init.org index 359abcc..d46eaf4 100644 --- a/init.org +++ b/init.org @@ -130,6 +130,8 @@ This function updates init.el whenever changes in init.org are made. The update (defvar MY--PATH_USER_LOCAL (expand-file-name "~/.emacs.d/user-local/")) (defvar MY--PATH_USER_GLOBAL (expand-file-name "~/.emacs.d/user-global/")) +(add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes")) + (when *sys/linux* (defconst MY--PATH_ORG_FILES (expand-file-name "~/Archiv/Organisieren/")) (defconst MY--PATH_ORG_FILES_MOBILE (expand-file-name "~/Archiv/Organisieren/mobile/"))) @@ -216,7 +218,7 @@ Some windows specific stuff :END: #+BEGIN_SRC emacs-lisp (when *sys/linux* - (set-face-font 'default "Hack Nerd Font-10")) + (set-face-font 'default "Hack-10")) (when *work_remote* (set-face-font 'default "Lucida Sans Typewriter-11")) #+END_SRC @@ -242,8 +244,10 @@ Some windows specific stuff Windows Theme: #+BEGIN_SRC emacs-lisp -(when (or *sys/windows* *sys/linux*) +(when *sys/windows* (load-theme 'tango)) +(when *sys/linux* + (load-theme 'plastic)) #+END_SRC ** line wrappings :PROPERTIES: