diff --git a/modules/plugins/languages/dart.nix b/modules/plugins/languages/dart.nix index e2b3182e..ee069a7d 100644 --- a/modules/plugins/languages/dart.nix +++ b/modules/plugins/languages/dart.nix @@ -130,6 +130,7 @@ in { (mkIf cfg.lsp.enable { vim.lsp.lspconfig.enable = true; + vim.lsp.lspconfig.sources.dart-lsp = servers.${cfg.lsp.server}.lspConfig; }) diff --git a/modules/wrapper/build/config.nix b/modules/wrapper/build/config.nix index 46d99b36..ee5b4fda 100644 --- a/modules/wrapper/build/config.nix +++ b/modules/wrapper/build/config.nix @@ -49,17 +49,6 @@ flutter-tools-patched = buildPlug { pname = "flutter-tools"; patches = [./patches/flutter-tools.patch]; - - # Disable failing require check hook checks - nvimSkipModule = [ - "flutter-tools.devices" - "flutter-tools.dap" - "flutter-tools.runners.job_runner" - "flutter-tools.decorations" - "flutter-tools.commands" - "flutter-tools.executable" - "flutter-tools.dev_tools" - ]; }; };