fix(LSP): Correct pylsp configuration syntax

Eglot's configuration for LSP servers does not have a “false” literal in
Lisp.  Furthermore, the previously used `nil` value was being mapped to
JSON's `null` value instead of `false`; making the LSP server to load
defaults for those settings instead of setting those settings to false.
This commit is contained in:
Dionisio E Alonso 2024-02-06 08:08:24 -03:00
parent 6b5452f9d1
commit f248c257bd
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@
:pylint (:enabled t
:executable "pylint")
:pylsp_mypy (:enabled t)
:pycodestyle (:enabled nil)
:pyflakes (:enabled nil)))))
:pycodestyle (:enabled :json-false)
:pyflakes (:enabled :json-false)))))
(when window-system (set-frame-size (selected-frame) 85 60))
; After dealing with some nice defaults setup packages