mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
fix: mismatching plugin input
This commit is contained in:
parent
756a23ebb0
commit
68e65c63e3
2 changed files with 6 additions and 2 deletions
|
@ -135,7 +135,7 @@
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
dart-tools = {
|
flutter-tools = {
|
||||||
url = "github:akinsho/flutter-tools.nvim";
|
url = "github:akinsho/flutter-tools.nvim";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -57,9 +57,13 @@ in {
|
||||||
default = "";
|
default = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
dart = {
|
dart = {
|
||||||
flutter-tools.enable = mkEnableOption "";
|
flutter-tools = {
|
||||||
|
enable = mkEnableOption "";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
sql = mkEnableOption "SQL Language LSP";
|
sql = mkEnableOption "SQL Language LSP";
|
||||||
go = mkEnableOption "Go language LSP";
|
go = mkEnableOption "Go language LSP";
|
||||||
ts = mkEnableOption "TS language LSP";
|
ts = mkEnableOption "TS language LSP";
|
||||||
|
|
Loading…
Reference in a new issue