2019-08-05 00:41:05 +00:00
|
|
|
;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
;; Set font
|
2020-03-09 15:50:16 +00:00
|
|
|
(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-03-09 15:50:16 +00:00
|
|
|
)
|
2020-03-09 16:04:59 +00:00
|
|
|
|
2020-05-28 17:28:26 +00:00
|
|
|
(setq doom-localleader-key ",")
|
2020-03-09 16:04:59 +00:00
|
|
|
|
2019-12-02 04:29:04 +00:00
|
|
|
;; Have projectile automatically check code.
|
2020-06-02 00:15:08 +00:00
|
|
|
;(setq projectile-project-search-path '("~/src/" "~/Code/"))
|
|
|
|
(add-to-list 'projectile-project-search-path "~/src/")
|
2020-05-28 17:28:26 +00:00
|
|
|
|
2020-06-02 00:15:08 +00:00
|
|
|
(load! "+mail")
|
|
|
|
(load! "+org")
|