diff options
Diffstat (limited to 'lsp/phpantom_lsp.lua')
| -rw-r--r-- | lsp/phpantom_lsp.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lsp/phpantom_lsp.lua b/lsp/phpantom_lsp.lua new file mode 100644 index 00000000..60248c1c --- /dev/null +++ b/lsp/phpantom_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/AJenbo/phpantom_lsp +--- +--- Installation: https://github.com/AJenbo/phpantom_lsp/blob/main/docs/SETUP.md + +---@type vim.lsp.Config +return { + cmd = { 'phpantom_lsp' }, + filetypes = { 'php' }, + root_markers = { '.phpantom.toml', '.git', 'composer.json' }, +} |
