Remove themes from spacemacs layer

- base16-theme
- monokai-theme
- zenburn-theme

It is not necessary to add them to the layer now because
the configuration layer engine does not treat themes listed
in `dotspacemacs-themes` as orphans anymore.
This commit is contained in:
syl20bnr 2015-04-22 22:06:19 -04:00
parent 845126dac0
commit d59e88eeec

View file

@ -19,7 +19,6 @@
aggressive-indent
auto-dictionary
auto-highlight-symbol
base16-theme
bind-key
bookmark
buffer-move
@ -80,7 +79,6 @@
indent-guide
leuven-theme
linum-relative
monokai-theme
move-text
multi-term
neotree
@ -103,7 +101,6 @@
whitespace
window-numbering
winner
zenburn-theme
))
(setq spacemacs-excluded-packages '())
@ -234,8 +231,6 @@
(evil-leader/set-key
"Sd" 'adict-change-dictionary))))
(defun spacemacs/init-base16-theme ())
(defun spacemacs/init-auto-highlight-symbol ()
(use-package auto-highlight-symbol
:defer t
@ -1922,8 +1917,6 @@ Put (global-hungry-delete-mode) in dotspacemacs/config to enable by default."
(setq linum-relative-current-symbol "")
(linum-relative-toggle))))
(defun spacemacs/init-monokai-theme ())
(defun spacemacs/init-move-text ()
(use-package move-text
:defer t
@ -2761,6 +2754,3 @@ It is a string holding:
(append winner-boring-buffers spacemacs/winner-boring-buffers))
(winner-mode t))))
(defun spacemacs/init-zenburn-theme ()
(use-package zenburn-theme
:defer t))