mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
plugins/flutter-tools: update settingsExample
This commit is contained in:
parent
a1b44cfdf4
commit
4f2d78fcaf
2 changed files with 32 additions and 34 deletions
|
@ -35,24 +35,23 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
settingsOptions = import ./settings-options.nix lib;
|
||||
|
||||
settingsExample = {
|
||||
debugger = {
|
||||
enabled = true;
|
||||
run_via_dap = true;
|
||||
};
|
||||
widget_guides.enabled = false;
|
||||
closing_tags.highlight = "Comment";
|
||||
lsp = {
|
||||
on_attach = null;
|
||||
capabilities.__raw = ''
|
||||
function(config)
|
||||
config.documentFormattingProvider = false
|
||||
return config
|
||||
end
|
||||
'';
|
||||
settings = {
|
||||
enableSnippets = false;
|
||||
updateImportsOnRename = true;
|
||||
decorations = {
|
||||
statusline = {
|
||||
app_version = true;
|
||||
device = true;
|
||||
};
|
||||
};
|
||||
dev_tools = {
|
||||
autostart = true;
|
||||
auto_open_browser = true;
|
||||
};
|
||||
lsp.color.enabled = true;
|
||||
widget_guides.enabled = true;
|
||||
closing_tags = {
|
||||
highlight = "ErrorMsg";
|
||||
prefix = ">";
|
||||
priority = 10;
|
||||
enabled = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -85,25 +85,24 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
debugger = {
|
||||
enabled = true;
|
||||
run_via_dap = true;
|
||||
};
|
||||
widget_guides.enabled = false;
|
||||
closing_tags.highlight = "Comment";
|
||||
lsp = {
|
||||
on_attach = null;
|
||||
capabilities.__raw = ''
|
||||
function(config)
|
||||
config.documentFormattingProvider = false
|
||||
return config
|
||||
end
|
||||
'';
|
||||
settings = {
|
||||
enableSnippets = false;
|
||||
updateImportsOnRename = true;
|
||||
decorations = {
|
||||
statusline = {
|
||||
app_version = true;
|
||||
device = true;
|
||||
};
|
||||
};
|
||||
dev_tools = {
|
||||
autostart = true;
|
||||
auto_open_browser = true;
|
||||
};
|
||||
lsp.color.enabled = true;
|
||||
widget_guides.enabled = true;
|
||||
closing_tags = {
|
||||
highlight = "ErrorMsg";
|
||||
prefix = ">";
|
||||
priority = 10;
|
||||
enabled = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue