summaryrefslogtreecommitdiff
path: root/lisp/python-custom.el
blob: 432ad480c325fcd1bdd26ae93c62493350203ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

;;; Code:
(use-package python
  :ensure t)
(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