summaryrefslogtreecommitdiffstats
path: root/lisp/init-theme.el
blob: 6f9a2141c31f47061740c0d765c8f5b033024130 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;; set theme
(use-package doom-themes
  :ensure t
  :if (display-graphic-p)
  :config
  (load-theme 'doom-one t)

  ;; make title bar use same style as theme on mac
  (when (eq system-type 'darwin)
    (setq default-frame-alist '((ns-appearance . dark)
                                (ns-transparent-title-bar . t)))))

(provide 'init-theme)