plugins/lsp/jsonnet-ls: init

This commit is contained in:
Matt Sturgeon 2024-06-14 09:17:19 +01:00
parent db93efffdb
commit ea5078fc10
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
4 changed files with 110 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{
example = {
plugins.lsp = {
enable = true;
servers.jsonnet-ls = {
enable = true;
settings = {
Indent = 4;
MaxBlankLines = 10;
StringStyle = "single";
CommentStyle = "leave";
PrettyFieldNames = true;
PadArrays = false;
PadObjects = true;
SortImports = false;
UseImplicitPlus = true;
StripEverything = false;
StripComments = false;
};
};
};
};
}