summaryrefslogtreecommitdiff
path: root/lisp/python-custom.el
blob: ebb2b81f021d92ff118971c560a87f413213aa86 (plain)
1
2
3
4
5
6
7
8
9
10
11
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