From 513087b8bd4dde10e77ceb03cec69418e5cb8267 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 2 Apr 2023 20:56:57 +0300 Subject: [PATCH] feat: add flutter-tools.nvim to available plugins --- flake.lock | 17 +++++++++++++++++ flake.nix | 5 +++++ lib/types/plugins.nix | 1 + 3 files changed, 23 insertions(+) diff --git a/flake.lock b/flake.lock index b7fa1b2..4bd6ec7 100644 --- a/flake.lock +++ b/flake.lock @@ -256,6 +256,22 @@ "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": { "flake": false, "locked": { @@ -1236,6 +1252,7 @@ "comment-nvim": "comment-nvim", "copilot-lua": "copilot-lua", "crates-nvim": "crates-nvim", + "dart-tools": "dart-tools", "dashboard-nvim": "dashboard-nvim", "diffview-nvim": "diffview-nvim", "dressing-nvim": "dressing-nvim", diff --git a/flake.nix b/flake.nix index e64624d..5876807 100644 --- a/flake.nix +++ b/flake.nix @@ -135,6 +135,11 @@ flake = false; }; + dart-tools = { + url = "github:akinsho/flutter-tools.nvim"; + flake = false; + }; + # Copying/Registers registers = { url = "github:tversteeg/registers.nvim"; diff --git a/lib/types/plugins.nix b/lib/types/plugins.nix index edbaff1..71e6a14 100644 --- a/lib/types/plugins.nix +++ b/lib/types/plugins.nix @@ -72,6 +72,7 @@ with lib; let "fidget-nvim" "diffview-nvim" "todo-comments" + "dart-tools" ]; # You can either use the name of the plugin or a package. pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));