mirror of
https://github.com/cap153/nvim.git
synced 2025-12-27 03:34:57 +08:00
17 lines
266 B
Lua
17 lines
266 B
Lua
-- ===
|
|
-- === flutter-tools
|
|
-- ===
|
|
|
|
return {
|
|
'akinsho/flutter-tools.nvim',
|
|
dependencies = {
|
|
'nvim-lua/plenary.nvim',
|
|
'dart-lang/dart-vim-plugin',
|
|
},
|
|
ft= {"dart"},
|
|
lazy = true,
|
|
config = function()
|
|
require("flutter-tools").setup {} -- use defaults
|
|
end
|
|
}
|
|
|