Update init.el

This commit is contained in:
Anthony Cicchetti 2020-09-08 16:24:24 -04:00
parent 0dc6a9ac01
commit 192dfe9562

View file

@ -5,43 +5,32 @@
(package-refresh-contents) (package-refresh-contents)
(defvar my-packages '( (defvar my-packages '(
; TODO
lispy lispy
; TODO
smartparens smartparens
; TODO
which-key which-key
; TODO
git-gutter git-gutter
rainbow-delimiters rainbow-delimiters
auto-complete-distel auto-complete-distel
auto-complete auto-complete
evil evil
magit magit
evil-magit evil-magit
base16-theme
)) ))
(dolist (p my-packages) (dolist (p my-packages)
(when (not (package-installed-p p)) (when (not (package-installed-p p))
(package-install p))) (package-install p)))
(load-theme 'base16-oceanicnext t)
(custom-set-variables (custom-set-variables
;; custom-set-variables was added by Custom. ;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance. ;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right. ;; If there is more than one, they won't work right.
'(package-selected-packages '(package-selected-packages
(quote '(lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)))
(lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) t))
(custom-set-faces (custom-set-faces
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.