2019-08-05 00:41:05 +00:00
|
|
|
;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
2020-06-03 03:25:02 +00:00
|
|
|
;; Use "," as leader.
|
|
|
|
(setq doom-localleader-key ",")
|
|
|
|
|
2021-04-02 19:47:25 +00:00
|
|
|
;; 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))
|
|
|
|
|
2019-08-05 00:41:05 +00:00
|
|
|
;; Set font
|
2020-03-09 15:50:16 +00:00
|
|
|
(pcase (system-name)
|
|
|
|
("zuk"
|
2020-05-08 23:46:37 +00:00
|
|
|
;; Wayland support for high HDPI scaling has some issues.
|
|
|
|
;; Increasing the font size is a working stopgap.
|
|
|
|
(font-put doom-font :size 15))
|
2020-03-09 15:50:16 +00:00
|
|
|
)
|
2020-03-09 16:04:59 +00:00
|
|
|
|
2020-06-03 03:22:57 +00:00
|
|
|
;; Use an image splash
|
|
|
|
(setq fancy-splash-image (concat doom-private-dir "doom.png"))
|
|
|
|
|
2021-09-14 00:09:02 +00:00
|
|
|
(setq ispell-dictionary "en")
|
|
|
|
|
|
|
|
|
|
|
|
(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_redmine.greenfiling.com.*\\.txt" . markdown-mode))
|
|
|
|
|
2020-06-02 00:15:08 +00:00
|
|
|
(load! "+mail")
|
|
|
|
(load! "+org")
|
2021-04-02 19:51:49 +00:00
|
|
|
(load! "+company")
|
2021-04-02 19:52:30 +00:00
|
|
|
(load! "+modeline")
|
2021-04-02 19:53:52 +00:00
|
|
|
(load! "+window")
|