Use pyright as language server when `lsp-pyright` is available

Also ignore the .cache directory, as that's the one `lsp-pyright' is installing
it's local copy of `pyright` into.
This commit is contained in:
Daniel - 2021-07-22 20:26:49 +02:00
parent 76990dcdf2
commit dc8a028742
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -59,3 +59,4 @@
/flycheck_init.el
/projects
/.lsp-session-v1
/.cache/

View File

@ -3020,6 +3020,9 @@ With given ARG, display files in `db/important-document-path."
(use-package python
:config (progn
(unless (require 'lsp-pyright nil :no-error)
(message "`lsp-pyright' not available, using defaults from `lsp'"))
(add-hook 'python-mode-hook #'highlight-indentation-mode)
(add-hook 'python-mode-hook #'company-mode)
(add-hook 'python-mode-hook #'lsp)))