mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
20 lines
344 B
EmacsLisp
20 lines
344 B
EmacsLisp
;;; theme.el -*- lexical-binding: t; -*-
|
|
|
|
;; Author: Tyler Starr
|
|
|
|
;; Commentary
|
|
|
|
;; Custom theming for emacs
|
|
|
|
;;; Colors
|
|
|
|
;; Provide nice premade themes
|
|
(crafted-package-install-package 'doom-themes)
|
|
|
|
;; Disable default theme and enable gruvbox
|
|
(disable-theme 'deeper-blue)
|
|
(load-theme 'doom-gruvbox t)
|
|
|
|
;;; Provide the module
|
|
(provide 'theme)
|