mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-02 09:04:36 +02:00
Define shell + php lsp + dart lsp + flutter + relative number (#188)
This commit is contained in:
parent
48286254b7
commit
5f22c1bace
7 changed files with 27 additions and 1 deletions
11
lua/lsp/dart-ls.lua
Normal file
11
lua/lsp/dart-ls.lua
Normal file
|
@ -0,0 +1,11 @@
|
|||
require'lspconfig'.dartls.setup{
|
||||
cmd = { "dart", O.dart.sdk_path, "--lsp" },
|
||||
on_attach = require'lsp'.common_on_attach,
|
||||
init_options = {
|
||||
closingLabels = false,
|
||||
flutterOutline = false,
|
||||
onlyAnalyzeProjectsWithOpenFiles = false,
|
||||
outline = false,
|
||||
suggestFromUnimportedLibraries = true
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue