From 597d6b4a5a6ea164bec1b9137e911c6e7965e221 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 12 Sep 2016 16:06:43 +0200 Subject: [PATCH] doom-theme.el => doom-themes.el --- doom-theme.el | 55 ------------------------------------------- doom-themes.el | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 55 deletions(-) delete mode 100644 doom-theme.el create mode 100644 doom-themes.el diff --git a/doom-theme.el b/doom-theme.el deleted file mode 100644 index 99a3eb9..0000000 --- a/doom-theme.el +++ /dev/null @@ -1,55 +0,0 @@ -;;; doom-theme.el --- a pack of themes inspired by Atom One -;; -;; Copyright (C) 2016 Henrik Lissner -;; -;; Author: Henrik Lissner -;; Maintainer: Henrik Lissner -;; Created: May 22, 2016 -;; Modified: September 7, 2016 -;; Version: 1.0.5 -;; Keywords: dark, blue, atom, one, seek -;; Homepage: https://github.com/hlissner/emacs-doom-theme -;; Package-Requires: ((emacs "24.4") (dash "2.12.0") (all-the-icons "1.0.0")) -;; -;; This file is not part of GNU Emacs. -;; -;;; Commentary: -;; -;; doom-theme is a pack of themes extracted from doom-emacs, and is inspired by -;; the One Dark/Light UI and syntax themes for Atom. It provides brighter source -;; buffers and dimmed side-windows/popups. -;; -;; See the README.md for tips on customizing neotree or adding nlinum current -;; line highlights. -;; -;; It comes with two built-in colorschemes: -;; -;; + doom-one: inspired by Atom One Dark -;; + doom-dark: based on Molokai -;; -;; Others to come: -;; -;; + doom-one-light: inspired by Atom One Light -;; + doom-tron: doom-one with daylerees' Tron Legacy colorscheme -;; + doom-peacock: doom-one with daylerees' Peacock Legacy colorscheme -;; -;; Note: doom-theme makes use of face-remapping-alist. See -;; doom-enable-bright-minibuffer and doom-enable-bright-buffer. -;; -;; ## Configuration -;; -;; + `doom-enable-bright-minibuffer` (default: `t`): if non-nil, the -;; minibuffer's background will be slightly brighter when in use (see -;; `doom-minibuffer-active` face) -;; + `doom-enable-bright-buffers` (default: `t`): if non-nil, source buffers' -;; backgrounds will be slightly brighter than special buffers. This looks -;; great for distinguishing sidebars and popups from source code buffers (See -;; `doom-default` face) -;; + `doom-enable-bold` (default: `t`) -;; + `doom-enable-italic` (default: `t`) -;; -;;; Code: - -(require 'doom) -(provide 'doom-theme) -;;; doom-theme.el ends here diff --git a/doom-themes.el b/doom-themes.el new file mode 100644 index 0000000..9af9a86 --- /dev/null +++ b/doom-themes.el @@ -0,0 +1,63 @@ +;;; doom-themes.el --- a pack of themes inspired by Atom One +;; +;; Copyright (C) 2016 Henrik Lissner +;; +;; Author: Henrik Lissner +;; Maintainer: Henrik Lissner +;; Created: May 22, 2016 +;; Modified: September 11, 2016 +;; Version: 1.0.6 +;; Keywords: dark, blue, atom, one, seek +;; Homepage: https://github.com/hlissner/emacs-doom-themes +;; Package-Requires: ((emacs "24.4") (dash "2.12.0") (all-the-icons "1.0.0")) +;; +;; This file is not part of GNU Emacs. +;; +;;; Commentary: +;; +;; An opinionated UI plugin/pack of themes extracted from my emacs.d, inspired +;; by the One Dark/Light UI and syntax themes in Atom. +;; +;; Includes optional dimming of non-source buffers, a neotree theme with font +;; icons, and (soon) a mode-line config. +;; +;; Currently available colorschemes: +;; + doom-one: inspired by Atom One Dark +;; + doom-dark: based on Molokai +;; +;; Soon to come: +;; + doom-one-light**: inspired by Atom One Light +;; + doom-tron**: doom-one, but with daylerees' Tron Legacy colorscheme +;; + doom-peacock**: doom-one, but with daylerees' Peacock colorscheme +;; +;; Notes: +;; + Uses `face-remapping-alist`, which won't work in terminal emacs (but +;; degrades gracefully). +;; + Tested mainly on Emacs 24.5+ +;; +;; +;; ## Configuration +;; +;; + `doom-enable-bold` (default: `t`) +;; + `doom-enable-italic` (default: `t`) +;; +;; +;; ## Installation +;; +;; Clone the repo somewhere in your `load-path'. +;; +;; If you want the neotree theme, install the fonts in the fonts/ folder of +;; all-the-icons. +;; +;; (require 'doom-themes) +;; (load-theme 'doom-one t) ;; or doom-dark, etc. +;; +;; ;; OPTIONAL (more info below) +;; (add-hook 'find-file-hook 'doom-buffer-mode) ;; brighter source buffers +;; (require 'doom-neotree) ;; neotree theme +;; +;;; Code: + +(require 'doom) +(provide 'doom-themes) +;;; doom-themes.el ends here