From 192dfe9562b93888eda628b9ea82cea8987d2484 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 8 Sep 2020 16:24:24 -0400 Subject: [PATCH] Update init.el --- emacs/init.el | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) 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.