diff --git a/emacs/init.el b/emacs/init.el index f57e9cd..2ad180b 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -5,43 +5,32 @@ (package-refresh-contents) (defvar my-packages '( - ; TODO lispy - - ; TODO smartparens - - ; TODO which-key - - ; TODO git-gutter - rainbow-delimiters - auto-complete-distel - auto-complete - evil - magit - evil-magit + base16-theme )) (dolist (p my-packages) (when (not (package-installed-p p)) (package-install p))) +(load-theme 'base16-oceanicnext t) + (custom-set-variables ;; custom-set-variables 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. '(package-selected-packages - (quote - (lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) t)) + '(lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.