diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/user/pack.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/user/pack.lua b/lua/user/pack.lua index e416baf..6d613e2 100644 --- a/lua/user/pack.lua +++ b/lua/user/pack.lua @@ -329,6 +329,21 @@ return packer.startup(function(use) end, }) use({ + "akinsho/flutter-tools.nvim", + requires = { + "nvim-lua/plenary.nvim", + "stevearc/dressing.nvim", -- optional for vim.ui.select + }, + config = function() + require('flutter-tools').setup({ + debugger = { + enabled = true, + run_via_dap = true, + }, + }) + end, + }) + use({ "iamcco/markdown-preview.nvim", -- Markdown Preview run = function() vim.fn["mkdp#util#install"]() end, }) |
