nixfleet/users/profiles/emacs/emacs.d/config/config-python.el
aciceri 317e50ef9f
Emacs and inputs updated
- Added org-roam in Emacs
- Flake inputs updated
- Other little modifications
2021-10-14 01:26:52 +02:00

9 lines
325 B
EmacsLisp

(use-package lsp-python-ms
:hook (python-mode . (lambda ()
(setq indent-tabs-mode nil) ; disable tabs
(require 'lsp-python-ms)
(lsp)))
:init
(setq lsp-python-ms-executable (executable-find "python-language-server")))
(provide 'config-python)