lib/languages: add root_marker to lspOptions type

This commit is contained in:
raf 2025-04-05 22:47:10 +03:00
parent 078688bb9f
commit 3ca3525aae
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -58,6 +58,14 @@ in {
type = listOf str;
description = "Command used to start the LSP server";
};
root_markers = mkOption {
type = listOf str;
description = ''
"root markers" used to determine the root directory of the workspace, and
the filetypes associated with this LSP server.
'';
};
};
};
}