summaryrefslogtreecommitdiff
path: root/lisp/lisp.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/lisp.el')
-rw-r--r--lisp/lisp.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/lisp.el b/lisp/lisp.el
new file mode 100644
index 0000000..c313d53
--- /dev/null
+++ b/lisp/lisp.el
@@ -0,0 +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)
+ )
+
+(add-hook 'emacs-lisp-mode-hook 'setup-lisp)
+(provide 'lisp)
+;;; lisp.el ends here