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

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