mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +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 = { };
|
||||
example = {
|
||||
"*".settings = {
|
||||
root_markers = [ ".git" ];
|
||||
capabilities.textDocument.semanticTokens = {
|
||||
multilineTokenSupport = true;
|
||||
"*" = {
|
||||
enable = true;
|
||||
settings = {
|
||||
root_markers = [ ".git" ];
|
||||
capabilities.textDocument.semanticTokens = {
|
||||
multilineTokenSupport = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
luals.enable = true;
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{
|
||||
example = {
|
||||
lsp.servers = {
|
||||
"*".settings = {
|
||||
root_markers = [ ".git" ];
|
||||
capabilities.textDocument.semanticTokens = {
|
||||
multilineTokenSupport = true;
|
||||
"*" = {
|
||||
enable = true;
|
||||
settings = {
|
||||
enable = true;
|
||||
root_markers = [ ".git" ];
|
||||
capabilities.textDocument.semanticTokens = {
|
||||
multilineTokenSupport = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
luals.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue