diff options
| author | Caleb White <cdwhite3@pm.me> | 2026-04-20 04:42:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-20 05:42:14 -0400 |
| commit | 4f395065292e4197b2c129386f9d6ec18ccb995e (patch) | |
| tree | 6bf8c29ced8bcc767805a623c83eace9e1fa9a16 /lsp/phpantom_lsp.lua | |
| parent | fix(flow): invalid condition #4394 (diff) | |
| download | nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar.gz nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar.bz2 nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar.lz nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar.xz nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.tar.zst nvim-lspconfig-4f395065292e4197b2c129386f9d6ec18ccb995e.zip | |
feat: phpantom_lsp #4362
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' }, +} |
