summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.org17
1 files changed, 16 insertions, 1 deletions
diff --git a/init.org b/init.org
index e9013f0..5c00846 100644
--- a/init.org
+++ b/init.org
@@ -174,6 +174,21 @@ no Internet connection.
(init--install-packages))))
#+END_SRC
+* Default fonts
+:PROPERTIES:
+:noweb-ref: default-fonts
+:END:
+
+I like pretty faces. For coding I like to use the DejaVu Sans Mono
+font. In =org-mode= and in =eww= I like to use a font with variable
+pitch instead of the default mono-spaced font. I find Linux Biolinum
+pretty, especially when it’s rendered large.
+
+#+BEGIN_SRC elisp
+(set-default-font "DejaVu Sans Mono")
+(set-face-attribute 'variable-pitch nil :height 1.3 :family "Linux Biolinum")
+#+END_SRC
+
* TODO Org-mode
This is my org mode configuration. Document it.
@@ -376,7 +391,6 @@ still need to process all of this and clean it up.
(setq frame-background-mode 'light)
(load-theme 'solarized t)
-(set-default-font "DejaVu Sans Mono")
(add-hook 'haskell-mode-hook
(lambda ()
@@ -392,6 +406,7 @@ put them all together to build the init file
#+BEGIN_SRC elisp :noweb yes :tangle "~/.emacs.d/init.el"
<<initial>>
<<packages>>
+<<default-fonts>>
<<initial-after-packages>>
<<org-mode>>
(load "~/.emacs.d/old-init.el")