lllShamanlll / emacs-doom-themes

An opinionated pack of modern color-themes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DOOM Themes v2.0.4 MIT MELPA Build Status

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: 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!

The wiki contains details for customizing the neotree theme.

Contributing

I appreciate contributions of any kind. Bug fixes, additional themes, plugin support requests and code reviews are welcome and encouraged.

Don't hesitate to report bugs, request features/faces or just tell me my Elisp-fu sucks!

About

An opinionated pack of modern color-themes

License:MIT License


Languages

Language:Emacs Lisp 99.9%Language:Makefile 0.1%