From 1ffc4619824dec0ec65e68cbfdd33335eec70cd7 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 18 Sep 2021 00:15:27 +0100 Subject: [PATCH] fix: comment out completion code for now Can review again at another point. Fixes #19 --- nvim/.config/nvim/lua/opdavies/init.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/nvim/.config/nvim/lua/opdavies/init.lua b/nvim/.config/nvim/lua/opdavies/init.lua index 5bd20ed..1fb88a0 100644 --- a/nvim/.config/nvim/lua/opdavies/init.lua +++ b/nvim/.config/nvim/lua/opdavies/init.lua @@ -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" },