diff --git a/lua/custom/lspconfig.lua b/lua/custom/lspconfig.lua index 28f7d71..2b08ee5 100644 --- a/lua/custom/lspconfig.lua +++ b/lua/custom/lspconfig.lua @@ -158,8 +158,16 @@ setup_server("intelephense", { init_options = { licenceKey = (function() local license_path = vim.fn.expand("$HOME/.config/intelephense/license.txt") +<<<<<<< HEAD if vim.fn.filereadable(license_path) == 1 then return vim.fn.readfile(license_path)[1] +======= + local file = io.open(license_path, "r") + if file then + local content = file:read("*l") -- read first line + file:close() + return content +>>>>>>> fbcc0b8d619e6f84448645f49d0a1dda9de840e5 end return nil end)(),