Add theme and set fonts

This commit is contained in:
Case Duckworth 2020-10-22 21:08:28 -05:00
parent 399df08896
commit 47b2435014
1 changed files with 15 additions and 0 deletions

15
init.el
View File

@ -89,6 +89,21 @@
:config
(load-theme 'modus-operandi t))
(use-package modus-vivendi-theme)
;; fonts
(set-face-attribute 'default nil
:family "DejaVu Sans Mono"
:height 110)
(set-face-attribute 'fixed-pitch nil
:family "DejaVu Sans Mono"
:height 110)
(set-face-attribute 'variable-pitch nil
:family "DejaVu Serif"
:height 120)
;;; Text editing
;; visual line mode
(global-visual-line-mode +1)