aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorYochem van Rosmalen <git@yochem.nl>2025-04-13 14:18:16 +0200
committerGitHub <noreply@github.com>2025-04-13 05:18:16 -0700
commitfb02680e755fe789e0999df2d208d9adb8fed676 (patch)
tree3f5aaa99c1fc290af3cdec0fe4023b1eaae6db3f /README.md
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar.gz
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar.bz2
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar.lz
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar.xz
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.tar.zst
nvim-lspconfig-fb02680e755fe789e0999df2d208d9adb8fed676.zip
docs: update contributing.md to new style lsp config #3712
Problem: Contributing guide describes old style of lsp configuration. Solution: Change to explain new style.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 240645d5..d2246f88 100644
--- a/README.md
+++ b/README.md
@@ -172,10 +172,10 @@ If a language server is missing from [configs.md](doc/configs.md), contributing
a new configuration for it helps others, especially if the server requires special setup. Follow these steps:
1. Read [CONTRIBUTING.md](CONTRIBUTING.md).
-2. Create a new file at `lua/lspconfig/configs/SERVER_NAME.lua`.
- - Copy an [existing config](https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/)
+2. Create a new file at `lsp/SERVER_NAME.lua`.
+ - Copy an [existing config](https://github.com/neovim/nvim-lspconfig/tree/master/lsp)
to get started. Most configs are simple. For an extensive example see
- [texlab.lua](https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/texlab.lua).
+ [texlab.lua](https://github.com/neovim/nvim-lspconfig/blob/master/lsp/texlab.lua).
3. Ask questions on [GitHub Discussions](https://github.com/neovim/neovim/discussions) or in the [Neovim Matrix room](https://app.element.io/#/room/#neovim:matrix.org).
### Release process