Files
dotfiles/common/.config/nvim/lsp/yamlls.lua
Pratik Tripathy 3be53f130a fix(neovim): Blank to default lsp configurations
- Configuration for files under `/lsp` are added
2025-09-01 11:54:16 +05:30

12 lines
254 B
Lua

return {
cmd = { "yaml-language-server", "--stdio" },
filetypes = { "yaml" },
settings = {
yaml = {
format = { enable = true },
validate = true,
schemaStore = { enable = true },
},
},
}