1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
;;; 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) ;;; lisp.el ends here