dotfiles/emacs/config.el

40 lines
1.2 KiB
EmacsLisp

;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
;; Use "," as leader.
(setq doom-localleader-key ",")
;; Speed up which key response
(setq which-key-idle-delay 0.1)
;; Firacode is broken with Emacs-plus on osx. Fallback to Hasklig
(setq doom-font (font-spec :family "Hasklig" :size 14)
<<<<<<< HEAD
doom-variable-pitch-font (font-spec :family "ETbembo" :size 19)
doom-big-font (font-spec :family "Hasklig" :size 16))
=======
doom-variable-pitch-font (font-spec :family "Alegreya" :size 17)
doom-big-font (font-spec :family "Hasklig" :size 17))
>>>>>>> 65c8b81 (You know I think I may need glasses at some point.)
;; 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-user-dir "doom.png"))
(setq ispell-dictionary "en"
ispell-personal-dictionary "~/org/.ispell.en.pws")
(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_redmine.greenfiling.com.*\\.txt" . markdown-mode))
(load! "+mail")
(load! "+org")
(load! "+modeline")
(load! "+window")