mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-05-06 19:43:40 +05:30
3be53f130a
- Configuration for files under `/lsp` are added
12 lines
254 B
Lua
12 lines
254 B
Lua
return {
|
|
cmd = { "yaml-language-server", "--stdio" },
|
|
filetypes = { "yaml" },
|
|
settings = {
|
|
yaml = {
|
|
format = { enable = true },
|
|
validate = true,
|
|
schemaStore = { enable = true },
|
|
},
|
|
},
|
|
}
|