Skip to content

Commit 02ac2fe

Browse files
committed
Delete unused theme stanzas, customize colors
1 parent 3d3430e commit 02ac2fe

File tree

3 files changed

+13
-119
lines changed

3 files changed

+13
-119
lines changed

custom.el

+8-3
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,18 @@
2323
(org-bbdb org-bibtex org-docview org-gnus org-habit org-info org-irc org-mhe org-rmail org-w3m)))
2424
'(package-selected-packages
2525
(quote
26-
(gnu-elpa-keyring-update orgalist htmlize olivetti apples-mode applescript-mode magithub jade-mode yasnippet-snippets esh-autosuggest gruvbox-theme php-extras wgrep s tiny-menu writeroom-mode feature-mode buttercup mustache-mode challenger-deep-theme helm-make all-the-icons-dired all-the-icons rjsx-mode json-mode lua-mode helm-spotify-plus go-projectile jinja2-mode cyberpunk-theme go-mode org-evil jujube-theme smart-mode-line-powerline-theme smart-mode-line visual-fill-column websocket flycheck powerline evil key-chord color-theme-modern esup counsel-projectile restclient ox-reveal org-tree-slide epresent color-moccur xterm-color nlinum-relative company-shell pandoc-mode virtualenvwrapper counsel helm-swoop groovy-mode octopress zenburn-theme yaml-mode which-key wgrep-ag web-mode w3m use-package twittering-mode sunshine sublime-themes rainbow-mode powerline-evil org-bullets mmm-mode markdown-mode magit highlight-symbol helm-projectile gtags fullframe flycheck-package exec-path-from-shell evil-surround evil-leader evil-jumper evil-indent-textobject emmet-mode elpy dictionary color-theme-sanityinc-tomorrow bpr auto-complete ag)))
26+
(ssh-agency dired gnu-elpa-keyring-update orgalist htmlize olivetti apples-mode applescript-mode magithub jade-mode yasnippet-snippets esh-autosuggest gruvbox-theme php-extras wgrep s tiny-menu writeroom-mode feature-mode buttercup mustache-mode challenger-deep-theme helm-make all-the-icons-dired all-the-icons rjsx-mode json-mode lua-mode helm-spotify-plus go-projectile jinja2-mode cyberpunk-theme go-mode org-evil jujube-theme smart-mode-line-powerline-theme smart-mode-line visual-fill-column websocket flycheck powerline evil key-chord color-theme-modern esup counsel-projectile restclient ox-reveal org-tree-slide epresent color-moccur xterm-color nlinum-relative company-shell pandoc-mode virtualenvwrapper counsel helm-swoop groovy-mode octopress zenburn-theme yaml-mode which-key wgrep-ag web-mode w3m use-package twittering-mode sunshine sublime-themes rainbow-mode powerline-evil org-bullets mmm-mode markdown-mode magit highlight-symbol helm-projectile gtags fullframe flycheck-package exec-path-from-shell evil-surround evil-leader evil-jumper evil-indent-textobject emmet-mode elpy dictionary color-theme-sanityinc-tomorrow bpr auto-complete ag)))
2727
'(safe-local-variable-values (quote ((css-indent-offset . 2) (no-byte-compile t)))))
2828

2929
(custom-set-faces
3030
;; custom-set-faces was added by Custom.
3131
;; If you edit it by hand, you could mess it up, so be careful.
3232
;; Your init file should contain only one such instance.
3333
;; If there is more than one, they won't work right.
34-
'(default ((((class color) (min-colors 16777215)) (:background "#282828" :foreground "#fdf4c1")) (((class color) (min-colors 255)) (:background "#262626" :foreground "#ffffaf"))))
35-
'(term ((t (:foreground "ivory1")))))
34+
'(default ((((class color) (min-colors 89)) (:foreground "#d3d0c8" :background "#2a2929"))))
35+
'(org-habit-alert-future-face ((((class color) (min-colors 89)) (:background "#4c4436"))))
36+
'(org-habit-clear-future-face ((((class color) (min-colors 89)) (:background "#40424a"))))
37+
'(org-habit-overdue-face ((((class color) (min-colors 89)) (:background "#ffb4ac" :foreground "#4f4340"))))
38+
'(org-habit-overdue-future-face ((((class color) (min-colors 89)) (:background "#4f4340"))))
39+
'(org-habit-ready-face ((((class color) (min-colors 89)) (:background "#3d454c" :foreground "#8ac6f2"))))
40+
'(org-habit-ready-future-face ((((class color) (min-colors 89)) (:background "#3d454c")))))

init.el

+5-15
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,6 @@
118118
(require 'init-platform)
119119
(require 'init-global-functions)
120120

121-
(use-package gruvbox-theme
122-
:ensure t
123-
:config
124-
(load-theme 'gruvbox))
125-
126121
(use-package smart-mode-line
127122
:ensure t
128123
:config
@@ -428,23 +423,18 @@ COMMAND, ARG, IGNORED are the arguments required by the variable
428423
(add-hook 'markdown-mode-hook (lambda ()
429424
(visual-line-mode t)
430425
(set-fill-column 80)
431-
(turn-on-auto-fill)
432426
(yas-minor-mode-on)
433427
(hugo-minor-mode t)
428+
(turn-on-auto-fill)
434429
;; Don't wrap Liquid tags
435430
(setq auto-fill-inhibit-regexp (rx "{" (? "{") (1+ (or "%" "<" " ")) (1+ letter)))
436431
(flyspell-mode))))
437432

438-
(use-package sublime-themes
439-
:ensure t)
440-
441-
(use-package color-theme-sanityinc-tomorrow
433+
(use-package solarized-theme
442434
:ensure t
443-
:defer t)
444-
445-
(use-package zenburn-theme
446-
:ensure t
447-
:defer t)
435+
:config
436+
(setq solarized-use-variable-pitch nil)
437+
(load-theme 'solarized-wombat-dark t))
448438

449439
(use-package web-mode
450440
:ensure t

themes/xoria256-theme.el

-101
This file was deleted.

0 commit comments

Comments
 (0)