From abe0dc5aa118e56df59d747f376dd08f23d4f298 Mon Sep 17 00:00:00 2001 From: Kevin Cotugno Date: Thu, 1 Jun 2017 10:39:43 -0700 Subject: [PATCH] Package cleanup --- config/emacs.d/init.el | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/config/emacs.d/init.el b/config/emacs.d/init.el index 4f12ea5..ba88c83 100644 --- a/config/emacs.d/init.el +++ b/config/emacs.d/init.el @@ -105,9 +105,16 @@ ;; End themes +(use-package org) + +(use-package org-bullets + :config + (add-hook 'org-mode-hook (lambda () + (org-bullets-mode t)))) + (use-package company :config - (company-mode)) + (add-hook 'after-init-hook 'global-company-mode)) (use-package evil :config @@ -129,15 +136,10 @@ (use-package evil-org) - (use-package powerline :config (powerline-default-theme)) -(use-package org-bullets - :config - (add-hook 'org-mode-hook (lambda () - (org-bullets-mode t)))) (use-package magit) (use-package helm