summaryrefslogtreecommitdiff
path: root/lisp/lisp.el
blob: 38c8ebeea79b789e91d9e1a35d6fbfb8f5998b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

;;; Code:

;;(add-hook 'emacs-lisp-mode-hook 'eglot-ensure)
(defun setup-lisp()
  "Set up the Lisp auto complete."
  (company-mode t)
  )


(add-hook 'emacs-lisp-mode-hook 'setup-lisp)
(provide 'lisp)
;;; lisp.el ends here