mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-26 18:58:43 +02:00
plugins/lsp/jsonnet-ls: init
This commit is contained in:
parent
db93efffdb
commit
ea5078fc10
4 changed files with 110 additions and 0 deletions
25
tests/test-sources/plugins/lsp/language-servers/jsonnet.nix
Normal file
25
tests/test-sources/plugins/lsp/language-servers/jsonnet.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue