languages: link to vim.lsp.servers for customization

This commit is contained in:
Ching Pei Yang 2025-08-30 17:51:22 +02:00
commit c6a2859193
No known key found for this signature in database
GPG key ID: B3841364253DC4C8
42 changed files with 168 additions and 42 deletions

View file

@ -197,7 +197,10 @@ in {
enable = mkEnableOption "clang LSP support" // {default = config.vim.lsp.enable;};
servers = mkOption {
description = "The clang LSP server to use";
description = ''
The clang LSP server to use. Customization of the servers can be done
via [](#opt-vim.lsp.servers).
'';
type = singleOrListOf (enum (attrNames servers));
default = defaultServers;
};