diff options
Diffstat (limited to 'ftplugin/php.lua')
-rw-r--r-- | ftplugin/php.lua | 42 |
1 files changed, 1 insertions, 41 deletions
diff --git a/ftplugin/php.lua b/ftplugin/php.lua index 054dff79..4eabcf71 100644 --- a/ftplugin/php.lua +++ b/ftplugin/php.lua @@ -1,41 +1 @@ -O.formatters.filetype["php"] = { - function() - return { - exe = O.lang.php.formatter.exe, - args = O.lang.php.formatter.args, - stdin = not (O.lang.php.formatter.stdin ~= nil), - } - end, -} - -require("formatter.config").set_defaults { - logging = false, - filetype = O.formatters.filetype, -} -if require("lv-utils").check_lsp_client_active "intelephense" then - return -end - -require("lspconfig").intelephense.setup { - cmd = { DATA_PATH .. "/lspinstall/php/node_modules/.bin/intelephense", "--stdio" }, - on_attach = require("lsp").common_on_attach, - handlers = { - ["textDocument/publishDiagnostics"] = vim.lsp.with(vim.lsp.diagnostic.on_publish_diagnostics, { - virtual_text = O.lang.php.diagnostics.virtual_text, - signs = O.lang.php.diagnostics.signs, - underline = O.lang.php.diagnostics.underline, - update_in_insert = true, - }), - }, - filetypes = O.lang.php.filetypes, - settings = { - intelephense = { - format = { - braces = O.lang.php.format.braces, - }, - environment = { - phpVersion = O.lang.php.environment.php_version, - }, - }, - }, -} +require("lsp").setup "php" |