fix: mismatching plugin input

This commit is contained in:
NotAShelf 2023-04-02 21:49:31 +03:00
parent 756a23ebb0
commit 68e65c63e3
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
2 changed files with 6 additions and 2 deletions

View file

@ -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;
}; };

View file

@ -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";