30 lines
828 B
EmacsLisp
30 lines
828 B
EmacsLisp
(provide 'thoom-theme)
|
|
|
|
;; Theme
|
|
(use-package doom-themes
|
|
:ensure t
|
|
:config
|
|
;; Global settings (defaults)
|
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
|
(load-theme 'doom-one t)
|
|
|
|
;; Enable flashing mode-line on errors
|
|
(doom-themes-visual-bell-config)
|
|
;; Corrects (and improves) org-mode's native fontification.
|
|
(doom-themes-org-config))
|
|
|
|
;; Slightly transparent window
|
|
(set-frame-parameter (selected-frame) 'alpha '(99 98))
|
|
(add-to-list 'default-frame-alist '(alpha 99 98))
|
|
|
|
;; Hide clutter
|
|
(setq inhibit-startup-message t
|
|
use-dialog-box nil)
|
|
(tool-bar-mode -1)
|
|
(scroll-bar-mode -1)
|
|
|
|
;; On a Mac, the menu bar doesn't take up screen real-estate, so leave it on
|
|
(unless ON-MAC
|
|
(menu-bar-mode -1))
|