aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2022-01-23 11:12:02 -0800
committerGitHub <noreply@github.com>2022-01-23 11:12:02 -0800
commit71c753fc675bc338fcbad86afd45123bebc6180e (patch)
tree29996ddefd463b22e93cc12c9916de52d6d0369e /README.md
parentdocs: update server_configurations.md (diff)
downloadnvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar.gz
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar.bz2
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar.lz
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar.xz
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.tar.zst
nvim-lspconfig-71c753fc675bc338fcbad86afd45123bebc6180e.zip
docs: fix alignment in readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7edc21d2..e5050e95 100644
--- a/README.md
+++ b/README.md
@@ -127,7 +127,7 @@ The most common reasons a language server does not start or attach are:
3. Not triggering root detection. **Some** language servers will only start if it is opened in a directory, or child directory, containing a file which signals the *root* of the project. Most of the time, this is a `.git` folder, but each server defines the root config in the lua file. See [server_configurations.md](doc/server_configurations.md) or the source for the list of root directories.
-4.You must pass `on_attach` and `capabilities` for **each** `setup {}` if you want these to take effect.
+4. You must pass `on_attach` and `capabilities` for **each** `setup {}` if you want these to take effect.
5. **Do not call `setup {}` twice for the same server**. The second call to `setup {}` will overwrite the first.