add: config php support single file

This commit is contained in:
asep.komarudin 2024-04-19 19:59:30 +07:00
parent 68795d84bf
commit f00438c822
5 changed files with 42 additions and 22 deletions

View file

@ -1,11 +1,12 @@
return {
root_dir = require("lspconfig.util").root_pattern(
"build",
"compile_commands.json",
".git",
"mvnw",
"gradlew",
"pom.xml",
"build.gradle"
) or vim.loop.cwd() or vim.fn.getcwd(),
root_dir = require("lspconfig.util").root_pattern(
"build",
"compile_commands.json",
".git",
"mvnw",
"gradlew",
"pom.xml",
"build.gradle"
) or vim.loop.cwd() or vim.fn.getcwd(),
singe_file_support = true,
}