fix some errors in the lsp readme

This commit is contained in:
Evan Klitzke 2020-12-20 13:25:23 -08:00 committed by duianto
parent f0256b7eca
commit c4ad14a73a

View file

@ -62,7 +62,7 @@ under the derived mode t prefix by =(spacemacs/lsp-bind-keys-for-mode mode)=
| Variable name | Default | Description |
|--------------------------------------+--------------------------------------+-----------------------------------------------------------------------------------------------------------------|
| =lsp-headerline-breadcrumb-enable= | nil | When non-nil, shows breadcrumb on headerline. |
| =lsp-headerline-breadcrumb-enable= | t | When non-nil, shows breadcrumb on headerline. |
| =lsp-headerline-breadcrumb-segments= | `'(path-up-to-project file symbols)' | Display the path to the root of project, the name of the current file, and also its symbols. See details below. |
| =lsp-lens-enable= | nil | When non-nil, shows code lens when it's supported. |
| =lsp-modeline-diagnostics-enable= | t | When non-nil, shows error diagnostics in modeline. |
@ -85,7 +85,7 @@ To always display code lens,
#+BEGIN_SRC emacs-lisp
(setq-default dotspacemacs-configuration-layers
'((lsp :variables lsp-lens-enable nil)))
'((lsp :variables lsp-lens-enable t)))
#+END_SRC
This doesn't have any effect when code lens is not supported by current language server.