We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7b55f commit 7dbe7a0Copy full SHA for 7dbe7a0
modules/plugins/languages/dart.nix
@@ -130,7 +130,6 @@ in {
130
131
(mkIf cfg.lsp.enable {
132
vim.lsp.lspconfig.enable = true;
133
-
134
vim.lsp.lspconfig.sources.dart-lsp = servers.${cfg.lsp.server}.lspConfig;
135
})
136
modules/wrapper/build/config.nix
@@ -49,6 +49,17 @@
49
flutter-tools-patched = buildPlug {
50
pname = "flutter-tools";
51
patches = [./patches/flutter-tools.patch];
52
+
53
+ # Disable failing require check hook checks
54
+ nvimSkipModule = [
55
+ "flutter-tools.devices"
56
+ "flutter-tools.dap"
57
+ "flutter-tools.runners.job_runner"
58
+ "flutter-tools.decorations"
59
+ "flutter-tools.commands"
60
+ "flutter-tools.executable"
61
+ "flutter-tools.dev_tools"
62
+ ];
63
};
64
65
0 commit comments