aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/README_template.md
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-02-02 19:11:59 -0800
committerJustin M. Keyes <justinkz@gmail.com>2020-02-02 19:13:42 -0800
commit8734a26c3c138cd509f6eda4b5e9294902947ed2 (patch)
tree0d71fada9cc7f1aa1b6bb2fcde06fa073457f71f /scripts/README_template.md
parentjsonls (vscode-json-languageserver) #85 (diff)
downloadnvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar.gz
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar.bz2
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar.lz
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar.xz
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.tar.zst
nvim-lspconfig-8734a26c3c138cd509f6eda4b5e9294902947ed2.zip
docgen.lua: require() all configs
Since 6d380677502d, configs are lazy-loaded. So docgen.lua needs to require() them explicitly.
Diffstat (limited to 'scripts/README_template.md')
-rw-r--r--scripts/README_template.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/README_template.md b/scripts/README_template.md
index 044fd4b3..98c9aa4e 100644
--- a/scripts/README_template.md
+++ b/scripts/README_template.md
@@ -14,11 +14,11 @@ Update Nvim and nvim-lsp before reporting an issue.
There are many language servers in the world, and not enough time.
Help us create configs for *all the LSPs!*
-0. Read [CONTRIBUTING.md](CONTRIBUTING.md) for instructions.
+1. Read [CONTRIBUTING.md](CONTRIBUTING.md) for instructions.
Ask questions in [Neovim Gitter](https://gitter.im/neovim/neovim).
-1. Choose a language from [the coc.nvim wiki](https://github.com/neoclide/coc.nvim/wiki/Language-servers) or
+2. Choose a language from [the coc.nvim wiki](https://github.com/neoclide/coc.nvim/wiki/Language-servers) or
[the emacs-lsp project](https://github.com/emacs-lsp/lsp-mode#supported-languages).
-2. Create a new file at `lua/nvim_lsp/SERVER_NAME.lua`. See
+3. Create a new file at `lua/nvim_lsp/SERVER_NAME.lua`. See
[existing configs](https://github.com/neovim/nvim-lsp/blob/master/lua/nvim_lsp/) for
examples (`lua/nvim_lsp/texlab.lua` is an extensive example).