dotfiles/emacs/config.el

28 lines
711 B
EmacsLisp
Raw Normal View History

;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
;; Use "," as leader.
(setq doom-localleader-key ",")
;; Set font
(setq doom-font (font-spec :family "FuraCode NF" :size 12))
(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-06-03 03:22:57 +00:00
;; Use an image splash
(setq fancy-splash-image (concat doom-private-dir "doom.png"))
;; Have projectile automatically check code.
(require 'seq)
(setq projectile-project-search-path
(seq-filter 'file-directory-p '("~/src" "~/Code" "~/opt")))
;; Make sort reasonable.
(setq projectile-sort-order 'access-time)
2020-05-28 17:28:26 +00:00
2020-06-02 00:15:08 +00:00
(load! "+mail")
(load! "+org")