summaryrefslogtreecommitdiff
path: root/lisp/lisp.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-03-11 17:22:13 -0500
committermattkae <mattkae@protonmail.com>2023-03-11 17:22:13 -0500
commit38893cc42e33fc3ab5b80ef592b66226b9ba91cf (patch)
treed47b5588c892f9f16c3785afe856958d139c5e8d /lisp/lisp.el
parent8ed31715bf05c33918c6926c36f510d838521d6a (diff)
Using use-package everywhere, upgrade to org roam
Diffstat (limited to 'lisp/lisp.el')
-rw-r--r--lisp/lisp.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/lisp.el b/lisp/lisp.el
index 01199ca..38c8ebe 100644
--- a/lisp/lisp.el
+++ b/lisp/lisp.el
@@ -1,15 +1,12 @@
;;; Code:
-(require 'eglot)
+
;;(add-hook 'emacs-lisp-mode-hook 'eglot-ensure)
(defun setup-lisp()
"Set up the Lisp auto complete."
(company-mode t)
)
-(require 'projectile)
-(with-eval-after-load 'projectile
- (add-to-list 'projectile-globally-ignored-directories "elpa"))
(add-hook 'emacs-lisp-mode-hook 'setup-lisp)
(provide 'lisp)