summaryrefslogtreecommitdiff
path: root/.config/emacs
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-03-19 12:52:02 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-03-21 14:15:18 -0400
commit73ae5820b2f96c160a6bc561edb3f515a18a3bf1 (patch)
tree52705eb974f19b521eb494989fd3c7e9050e0389 /.config/emacs
parentd7a49a9495249775e7863018a451f14b52e7ccf7 (diff)
abyss color-theme
Diffstat (limited to '.config/emacs')
-rw-r--r--.config/emacs/custom.el9
-rw-r--r--.config/emacs/init.el3
2 files changed, 3 insertions, 9 deletions
diff --git a/.config/emacs/custom.el b/.config/emacs/custom.el
index f5d9860..31da9e3 100644
--- a/.config/emacs/custom.el
+++ b/.config/emacs/custom.el
@@ -3,9 +3,6 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(ansi-color-names-vector
- ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"])
- '(custom-enabled-themes (quote (tsdh-dark)))
'(erc-nick "lukeshu")
'(graphviz-dot-auto-indent-on-semi nil)
'(org-latex-default-packages-alist
@@ -51,9 +48,3 @@
(Nginx-indent-level . 8)
(c-set-style . "K&R"))))
'(use-package-verbose (quote debug)))
-(custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- '(term-color-blue ((t (:background "#729fcf" :foreground "#729fcf")))))
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 903303e..3876b1d 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -61,6 +61,9 @@
(require 'use-package)
(require 'bind-key)
+;; Themes
+(use-package abyss-theme
+ :config (load-theme 'abyss t))
;; Minor modes
(use-package dtrt-indent ;; Detect indent style for existing files
:config (dtrt-indent-mode 1))