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