added a theme

This commit is contained in:
Eli Mellen 2019-09-04 10:21:36 -04:00
parent 019e839b03
commit e4fd4cc97b
2 changed files with 17 additions and 0 deletions

View File

@ -49,6 +49,9 @@
;; 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.
'(custom-safe-themes
(quote
("801a567c87755fe65d0484cb2bded31a4c5bb24fd1fe0ed11e6c02254017acb2" "341b2570a9bbfc1817074e3fad96a7eff06a75d8e2362c76a2c348d0e0877f31" default)))
'(package-selected-packages (quote (use-package slime))))
(custom-set-faces
;; custom-set-faces was added by Custom.

View File

@ -35,6 +35,13 @@
tab-width 4)
#+END_SRC
** Theme
I've been waffling a lot, lately, and also enjoying light themes.
#+BEGIN_SRC emacs-lisp
(use-package dracula-theme
:ensure t)
#+END_SRC
* Override some default behaviors for more convenient editing
#+BEGIN_SRC emacs-lisp
@ -180,6 +187,13 @@
(add-hook 'org-mode-hook 'org-bullets-mode))
#+END_SRC
*** Restclient
Who needs Postman when you've got emacs!?
#+BEGIN_SRC emacs-lisp
(use-package restclient
:ensure t)
#+END_SRC
*** Clojure
#+BEGIN_SRC emacs-lisp
(use-package clojure-mode