dotfiles/emacs/config.el
James Patrick d7862cc24a Automatically add repos to projectile.
This will selectively ignore any directories that don't exist.
2020-06-27 22:22:32 -04:00

25 lines
629 B
EmacsLisp

;;; ~/.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"
;; 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"))
;; Have projectile automatically check code.
(setq projectile-project-search-path
(seq-filter 'file-directory-p '("~/src" "~/Code" "~/opt")))
(load! "+mail")
(load! "+org")