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,13 @@
return {}
return {
cmd = { "prettier", "--lsp" },
filetypes = {
"javascript",
"typescript",
"css",
"scss",
"html",
"json",
"yaml",
},
root_markers = { ".prettierrc", "package.json" },
}