dotfiles/.config/nvim/lua/config/plugins/languages/flutter.lua

14 lines
306 B
Lua
Raw Permalink Normal View History

2025-05-05 22:56:56 +05:00
return {
'nvim-flutter/flutter-tools.nvim',
lazy = false,
dependencies = { 'nvim-lua/plenary.nvim', },
2025-05-05 22:56:56 +05:00
config = function()
2025-06-26 19:57:04 +05:00
require('flutter-tools').setup({
fvm = true,
dev_log = {
2025-07-03 22:25:22 +05:00
open_cmd = 'FloutterLog',
2025-06-26 19:57:04 +05:00
}
})
2025-05-05 22:56:56 +05:00
end,
}