summaryrefslogtreecommitdiff
path: root/lisp/python-custom.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-11-07 20:01:07 -0500
committermattkae <mattkae@protonmail.com>2022-11-07 20:01:07 -0500
commit905be3d7a63c384485252a1f1cdf14287b79a159 (patch)
treee0373dacc2435def5663c89ad03aa3b20c4dbce6 /lisp/python-custom.el
parent5eae98a4a4728bc102e40b039cd8f3ab129a9348 (diff)
Halfway decent python mode
Diffstat (limited to 'lisp/python-custom.el')
-rw-r--r--lisp/python-custom.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/python-custom.el b/lisp/python-custom.el
new file mode 100644
index 0000000..ebb2b81
--- /dev/null
+++ b/lisp/python-custom.el
@@ -0,0 +1,12 @@
+
+;;; Code:
+(require 'python)
+(use-package eglot
+ :ensure t
+ :config
+ (add-to-list 'eglot-server-programs '(python-mode . ("pylsp")))
+ :hook
+ ((python-mode . eglot-ensure)))
+
+(provide 'python-custom)
+;;; python-custom.el ends here