2023-01-16 17:21:19 -08:00
|
|
|
; Themes
|
2023-01-13 21:09:39 -08:00
|
|
|
(setq
|
2023-01-16 17:21:19 -08:00
|
|
|
theming-modifications
|
|
|
|
'(
|
|
|
|
(spacemacs-dark
|
|
|
|
(whitespace-space :background unspecified
|
|
|
|
:foreground "gray30")
|
|
|
|
(whitespace-space-after-tab :foreground "gray30")
|
|
|
|
(whitespace-tab :background unspecified)
|
|
|
|
(whitespace-newline :foreground "gray30")
|
|
|
|
(whitespace-line :background unspecified)
|
|
|
|
(whitespace-indentation :foreground "gray30")
|
|
|
|
(highlight-doxygen-comment :slant italic)
|
|
|
|
(font-lock-type-face :foreground "#55fe55")
|
|
|
|
(font-lock-constant-face :foreground "#ecbd3d")
|
2023-01-13 21:09:39 -08:00
|
|
|
)
|
2023-01-16 17:21:19 -08:00
|
|
|
(noctilux
|
|
|
|
(highlight :background "#292929")
|
|
|
|
(whitespace-space :background unspecified
|
|
|
|
:foreground "gray30")
|
|
|
|
(whitespace-space-after-tab :foreground "gray30")
|
|
|
|
(whitespace-tab :background unspecified
|
|
|
|
:foreground "gray30")
|
|
|
|
(whitespace-newline :foreground "gray30")
|
|
|
|
(whitespace-line :background unspecified)
|
|
|
|
(whitespace-indentation :foreground "gray30")
|
|
|
|
(header-line :background unspecified
|
|
|
|
:box "gray80"
|
|
|
|
:inverse-video nil)
|
|
|
|
(highlight-doxygen-comment :slant italic)
|
2023-01-13 21:09:39 -08:00
|
|
|
)
|
2023-01-16 17:21:19 -08:00
|
|
|
(occidental
|
|
|
|
;; The default is too bright
|
|
|
|
(highlight :background "#9EC4EB")
|
|
|
|
(whitespace-space :background unspecified
|
|
|
|
:foreground "gray70")
|
|
|
|
(whitespace-space-after-tab :foreground "gray70")
|
|
|
|
(whitespace-tab :background unspecified
|
|
|
|
:foreground "gray70")
|
|
|
|
(whitespace-newline :foreground "gray70")
|
|
|
|
(whitespace-line :background unspecified)
|
|
|
|
(whitespace-indentation :foreground "gray70")
|
|
|
|
(header-line :background unspecified
|
|
|
|
:box "gray20"
|
|
|
|
:inverse-video nil)
|
|
|
|
(highlight-doxygen-comment :slant italic)
|
|
|
|
)
|
|
|
|
))
|
|
|
|
;; This exists to ensure the theming modifications are applied. 'after-init-hook
|
|
|
|
;; does not work well here.
|
|
|
|
(add-hook 'emacs-startup-hook
|
|
|
|
(lambda () (spacemacs/update-theme)))
|
|
|
|
|
|
|
|
;; Language Support
|
2023-01-13 21:09:39 -08:00
|
|
|
|
2023-01-16 17:21:19 -08:00
|
|
|
;; Lilypond
|
|
|
|
(require 'lilypond-mode)
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.ly\\'" . LilyPond-mode))
|