mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Add theme module for doom-vibrant theme
This commit is contained in:
32
themes/siren-theme-doom-vibrant.el
Normal file
32
themes/siren-theme-doom-vibrant.el
Normal file
@@ -0,0 +1,32 @@
|
||||
;;; siren-theme-doom-vibrant.el --- jimeh's Emacs Siren: doom-vibrant theme.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;; Setup for doom-vibrant theme.
|
||||
|
||||
;;; Code:
|
||||
|
||||
(use-package doom-themes
|
||||
:ensure t
|
||||
:config
|
||||
(require 'doom-themes)
|
||||
|
||||
;; 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 the theme (doom-vibrant, doom-molokai, etc); keep in mind that each theme
|
||||
;; may have their own settings.
|
||||
(load-theme 'doom-vibrant t)
|
||||
|
||||
;; Enable flashing mode-line on errors
|
||||
(doom-themes-visual-bell-config)
|
||||
|
||||
;; Enable custom neotree theme
|
||||
(doom-themes-neotree-config) ; all-the-icons fonts must be installed!
|
||||
|
||||
;; Corrects (and improves) org-mode's native fontification.
|
||||
(doom-themes-org-config))
|
||||
|
||||
(provide 'siren-theme-doom-vibrant)
|
||||
;;; siren-theme-doom-vibrant.el ends here
|
||||
Reference in New Issue
Block a user