summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org14
1 files changed, 5 insertions, 9 deletions
diff --git a/init.org b/init.org
index 1337e8f..c49e09b 100644
--- a/init.org
+++ b/init.org
@@ -377,9 +377,6 @@
(setq custom-theme-directory
(expand-file-name "lib/themes" jao-emacs-dir))
- (defvar jao-default-font "Hack-9") ;; "Fira Code-9"
- (setq jao-default-font "Roboto Mono-9")
-
(require 'jao-themes)
(defvar jao-theme-dark 'jao-dark)
@@ -387,7 +384,8 @@
(defun jao-themes-setup ()
(let ((dark (jao-colors-scheme-dark-p)))
- (load-theme (if dark jao-theme-dark jao-theme-light) t)))
+ (load-theme (if dark jao-theme-dark jao-theme-light) t)
+ (modify-all-frames-parameters `((font . ,jao-themes-default-face)))))
(when (and window-system (not (eq window-system 'pgtk)))
(jao-themes-setup))
@@ -1232,17 +1230,15 @@
*** Frame geometry
#+begin_src emacs-lisp
(setq frame-resize-pixelwise nil)
-
;;; modeline, toolbars and co.
(modify-all-frames-parameters
`((horizontal-scroll-bars . nil)
(vertical-scroll-bars . nil)
(scroll-bar-width . 11)
- (menu-bar . nil)
- (font . ,jao-default-font)))
+ (menu-bar . nil)))
#+end_src
*** Frame layout, title, etc.
- #+BEGIN_SRC emacs-lisp
+ #+begin_src emacs-lisp
(setq frame-title-format '("%b"))
(use-package fringe)
(fringe-mode)
@@ -1276,7 +1272,7 @@
(jao-trisect t)
(next-window)
(delete-window))
- #+END_SRC
+ #+end_src
*** afio
#+begin_src emacs-lisp
(use-package jao-afio)