dotfiles/emacs/config.el
James Patrick 76fa17427f Updating the org UI to try and make it better looking.
Mixed Mode is loaded from the zen doom module, but there's a fair amount
of general weirdness with the ZEN mode so there might be some rough edges.
2021-04-02 15:51:02 -04:00

24 lines
672 B
EmacsLisp

;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
;; Use "," as leader.
(setq doom-localleader-key ",")
;; Firacode is broken with Emacs-plus on osx. Fallback to Hasklig
(setq doom-font (font-spec :family "Hasklig" :size 12)
doom-variable-pitch-font (font-spec :family "ETbembo" :size 16)
doom-big-font (font-spec :family "Hasklig" :size 16))
;; Set font
(pcase (system-name)
("zuk"
;; Wayland support for high HDPI scaling has some issues.
;; Increasing the font size is a working stopgap.
(font-put doom-font :size 15))
)
;; Use an image splash
(setq fancy-splash-image (concat doom-private-dir "doom.png"))
(load! "+mail")
(load! "+org")