mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
modules/lsp: add enable = true
to wildcard config section
This commit is contained in:
parent
2d65c66a1a
commit
eeae362038
2 changed files with 15 additions and 8 deletions
|
@ -93,10 +93,13 @@ in
|
||||||
'';
|
'';
|
||||||
default = { };
|
default = { };
|
||||||
example = {
|
example = {
|
||||||
"*".settings = {
|
"*" = {
|
||||||
root_markers = [ ".git" ];
|
enable = true;
|
||||||
capabilities.textDocument.semanticTokens = {
|
settings = {
|
||||||
multilineTokenSupport = true;
|
root_markers = [ ".git" ];
|
||||||
|
capabilities.textDocument.semanticTokens = {
|
||||||
|
multilineTokenSupport = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
luals.enable = true;
|
luals.enable = true;
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
{
|
{
|
||||||
example = {
|
example = {
|
||||||
lsp.servers = {
|
lsp.servers = {
|
||||||
"*".settings = {
|
"*" = {
|
||||||
root_markers = [ ".git" ];
|
enable = true;
|
||||||
capabilities.textDocument.semanticTokens = {
|
settings = {
|
||||||
multilineTokenSupport = true;
|
enable = true;
|
||||||
|
root_markers = [ ".git" ];
|
||||||
|
capabilities.textDocument.semanticTokens = {
|
||||||
|
multilineTokenSupport = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
luals.enable = true;
|
luals.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue