mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
17 lines
341 B
Lua
17 lines
341 B
Lua
return {
|
|
{
|
|
"akinsho/flutter-tools.nvim",
|
|
lazy = false,
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"stevearc/dressing.nvim", -- optional for better UI
|
|
},
|
|
config = function()
|
|
require("flutter-tools").setup({
|
|
dev_log = {
|
|
open_cmd = "botright 8split",
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|