mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
update
This commit is contained in:
parent
da02b7279c
commit
ba79f479ef
8 changed files with 202 additions and 2 deletions
22
lua/plugin_custom/flutter-tools.lua
Normal file
22
lua/plugin_custom/flutter-tools.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
"akinsho/flutter-tools.nvim",
|
||||
dependencies = { "mason-lspconfig.nvim", "nvim-lua/plenary.nvim" },
|
||||
event = "BufRead",
|
||||
config = function()
|
||||
require("flutter-tools").setup({
|
||||
server = {
|
||||
color = {
|
||||
enabled = true,
|
||||
},
|
||||
settings = {
|
||||
showTodos = true,
|
||||
completeFunctionCalls = true,
|
||||
},
|
||||
on_attach = require("user.lsp.handlers").on_attach,
|
||||
capabilities = {
|
||||
require("user.lsp.handlers").capabilities,
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue