1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 12:06:05 +01:00
nixvim/modules/lsp/servers/custom
Matt Sturgeon 2414e8e99f modules/lsp: auto-import per-server custom modules
Adding a module in the following places will import the module into that
specific server's submodule.

This allows creating server-specific options.

Added a test case to ensure all custom modules correspond to an actual
server option to avoid accidental dead code.
2025-10-10 14:11:54 +00:00
..
README.md modules/lsp: auto-import per-server custom modules 2025-10-10 14:11:54 +00:00

Custom LSP server modules

This directory contains modules that relate to a specific server. Files are auto-imported into the submodule based on their name.

For example, a file named foo.nix or foo/default.nix would be imported into the lsp.servers.foo submodule.

A corresponding lsp.servers.<name> option must exist for every module in this directory.