feat(nvim): add flutter development tools

This commit is contained in:
Michael Thomas 2024-09-07 11:55:56 -04:00
parent 9716079bb9
commit 33e4d5b28b
3 changed files with 14 additions and 0 deletions

View File

@ -56,6 +56,7 @@
# ./utils/better-escape.nix
./utils/flash.nix # better search labels
./utils/flutter-tools.nix
./utils/hardtime.nix # hints to get better at vim
# ./utils/harpoon.nix # better navigation between files & terminals
./utils/illuminate.nix # highlight other uses of current word

View File

@ -99,6 +99,8 @@
};
};
};
dartls.enable = true;
};
# keymaps = {
# silent = true;

View File

@ -0,0 +1,11 @@
{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [flutter-tools-nvim];
extraConfigLua = ''
require("flutter-tools").setup {
debugger = {
enabled = true
}
}
'';
}