feat: add flutter-tools.nvim to available plugins

This commit is contained in:
NotAShelf 2023-04-02 20:56:57 +03:00
parent 43d159c2ee
commit 513087b8bd
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
3 changed files with 23 additions and 0 deletions

View file

@ -256,6 +256,22 @@
"type": "github" "type": "github"
} }
}, },
"dart-tools": {
"flake": false,
"locked": {
"lastModified": 1680456818,
"narHash": "sha256-VNSrYJZKcQ92+2ko5ZkOOiAM/sXqbJtpkYvxFr1qtWk=",
"owner": "akinsho",
"repo": "flutter-tools.nvim",
"rev": "0a7e6b40aebd874e957ed630420a267e6cac0967",
"type": "github"
},
"original": {
"owner": "akinsho",
"repo": "flutter-tools.nvim",
"type": "github"
}
},
"dashboard-nvim": { "dashboard-nvim": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -1236,6 +1252,7 @@
"comment-nvim": "comment-nvim", "comment-nvim": "comment-nvim",
"copilot-lua": "copilot-lua", "copilot-lua": "copilot-lua",
"crates-nvim": "crates-nvim", "crates-nvim": "crates-nvim",
"dart-tools": "dart-tools",
"dashboard-nvim": "dashboard-nvim", "dashboard-nvim": "dashboard-nvim",
"diffview-nvim": "diffview-nvim", "diffview-nvim": "diffview-nvim",
"dressing-nvim": "dressing-nvim", "dressing-nvim": "dressing-nvim",

View file

@ -135,6 +135,11 @@
flake = false; flake = false;
}; };
dart-tools = {
url = "github:akinsho/flutter-tools.nvim";
flake = false;
};
# Copying/Registers # Copying/Registers
registers = { registers = {
url = "github:tversteeg/registers.nvim"; url = "github:tversteeg/registers.nvim";

View file

@ -72,6 +72,7 @@ with lib; let
"fidget-nvim" "fidget-nvim"
"diffview-nvim" "diffview-nvim"
"todo-comments" "todo-comments"
"dart-tools"
]; ];
# You can either use the name of the plugin or a package. # You can either use the name of the plugin or a package.
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package)); pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));