diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-06-28 23:54:21 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-06-28 23:54:21 +0200 |
| commit | a5978b5f380092313cc15c19a202b2bbe5a82a0c (patch) | |
| tree | fa616f637815b4e35f9abe5be0c1485283d5755d /lua/user/pack.lua | |
| parent | 28eeec6a448d837685bac7952442d37cee18a867 (diff) | |
| download | dotfiles-a5978b5f380092313cc15c19a202b2bbe5a82a0c.tar.gz dotfiles-a5978b5f380092313cc15c19a202b2bbe5a82a0c.zip | |
Install flutter-tools
Diffstat (limited to 'lua/user/pack.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, }) |
