fix(neovim): Blank to default lsp configurations

- Configuration for files under `/lsp` are added
This commit is contained in:
Pratik Tripathy
2025-09-01 11:54:16 +05:30
parent eb9b6b5ab3
commit 3be53f130a
20 changed files with 118 additions and 46 deletions

View File

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