- A Triplet of themey goodness.
- Full colored gui and modern 256 color terminal support only.
Ample Theme is on Melpa, ensure that Melpa is added to your package archives, then use M-x package-install ample-theme.
;; then in your init you can load all of the themes
;; without enabling theme (or just load one)
(load-theme 'ample t t)
(load-theme 'ample-flat t t)
(load-theme 'ample-light t t)
;; choose one to enable
(enable-theme 'ample)
;; (enable-theme 'ample-flat)
;; (enable-theme 'ample-light)
;; Or, if you use `use-package', do something like this:
(use-package ample-theme
:init (progn (load-theme 'ample t t)
(load-theme 'ample-flat t t)
(load-theme 'ample-light t t)
(enable-theme 'ample-flat))
:defer t
:ensure t)
# throw this in your ~/.bash_profile
export TERM="xterm-256color"