fix: comment out completion code for now

Can review again at another point.

Fixes #19
This commit is contained in:
Oliver Davies 2021-09-18 00:15:27 +01:00
parent 0100c69eb2
commit 1ffc461982

View file

@ -17,16 +17,16 @@ configs.setup {
-- LSP
local lspconfig = require'lspconfig'
local completion = require'completion'
--local completion = require'completion'
local function custom_on_attach(client)
print('Attaching to ' .. client.name)
completion.on_attach(client)
end
--local function custom_on_attach(client)
--print('Attaching to ' .. client.name)
--completion.on_attach(client)
--end
local default_config = {
on_attach = custom_on_attach,
}
--local default_config = {
--on_attach = custom_on_attach,
--}
lspconfig.intelephense.setup{
filetypes = { "install", "inc", "module", "php", "test", "theme" },