Max-Tweddell / emacs-doom-themes

An opinionated pack of modern color-themes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Release tag MELPA Build Status MIT

doom-themes

Announcement: v2.0 of this package was released with three large changes:

  • doom-buffer-mode and doom-brighten-minibuffer have been moved to a new plugin: solaire-mode
  • doom-nlinum was removed; line highlighting is now supported in nlinum 1.7
  • A rewrite of doom-themes' backend and themes means problems or breakages may have slipped through. Let me know if you find one!

DOOM Themes is an opinionated UI plugin and pack of themes extracted from my emacs.d, inspired by some of my favorite color themes.

See the screenshots.

Features

  • Color themes:
    • doom-one: doom-themes' flagship theme, inspired by Atom's One Dark themes
    • doom-vibrant: a more vibrant version of doom-one
    • doom-molokai: based on Textmate's monokai
    • doom-nova: adapted from Nova (thanks to bigardone)
    • doom-one-light: light version of doom-one
    • doom-x: reads your colors from ~/.Xresources
    • doom-tomorrow-night / doom-tomorrow-day: by Chris Kempson
    • doom-spacegrey: I'm sure you've heard of it
    • doom-mono-dark / doom-mono-light: a minimalistic, monochromatic theme
    • doom-tron: based on Tron Legacy from daylerees' themes
    • doom-peacock: based on Peacock from daylerees' themes
  • Included features:
    • (doom-themes-visual-bell-config): flash the mode-line when the Emacs bell rings (i.e. an error occurs).

    • (doom-themes-neotree-config): a customizable neotree theme that takes after Atom's file drawer, and is simpler than the built in icon theme in neotree (screenshot, more details).

      This requires all-the-icons' fonts to be installed: M-x all-the-icons-install-fonts

  • Resources that may interest you:

Install

M-x package-install RET doom-themes

A comprehensive configuration example:

(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-one, doom-molokai, etc); keep in mind that each theme
;; may have their own settings.
(load-theme 'doom-one 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.
;;
;; 1. Re-set `org-todo' & `org-headline-done' faces to make them respect
;;    underlying faces (i.e. don't override the :height or :background of
;;    underlying faces).
;; 2. Make statistic cookies respect underlying faces.
;; 3. Fontify item bullets (make them stand out)
;; 4. Fontify item checkboxes (and when they're marked done), like TODOs that are
;;    marked done.
;; 5. Fontify dividers/separators (5+ dashes)
;; 6. Fontify #hashtags and @at-tags, for personal convenience; see
;;    `doom-org-special-tags' to disable this.
(doom-themes-org-config)

The wiki contains details for customizing the neotree theme.

Contribute

I welcome contributions of any kind, be they pull requests, bug reports or elisp pointers. Additional theme and plugin support requests are welcome too.

About

An opinionated pack of modern color-themes

License:MIT License


Languages

Language:Emacs Lisp 99.9%Language:Makefile 0.1%