feat: add nvimdots
This commit is contained in:
12
nvim/lua/modules/configs/completion/servers/dartls.lua
Normal file
12
nvim/lua/modules/configs/completion/servers/dartls.lua
Normal file
@@ -0,0 +1,12 @@
|
||||
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/dartls.lua
|
||||
return {
|
||||
cmd = { "dart", "language-server", "--protocol=lsp" },
|
||||
filetypes = { "dart" },
|
||||
init_options = {
|
||||
closingLabels = true,
|
||||
flutterOutline = true,
|
||||
onlyAnalyzeProjectsWithOpenFiles = true,
|
||||
outline = true,
|
||||
suggestFromUnimportedLibraries = true,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user