mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
26 lines
512 B
Nix
26 lines
512 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|