nvim: add link to bug for hover problem

This commit is contained in:
tastytea 2022-10-02 22:54:45 +02:00
parent 8a94e211bc
commit 5dfa293d77
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM

View File

@ -59,7 +59,7 @@ local on_attach = function(client, bufnr)
}, bufnr)
end
-- -- show help on hover
-- -- show help on hover (<https://github.com/neovim/neovim/issues/20457>)
-- if client.server_capabilities.hoverProvider then
-- vim.api.nvim_create_autocmd({ 'CursorHold', 'CursorHoldI' }, {
-- group = 'config_lsp',
@ -101,7 +101,7 @@ local simple_ls = {
['yaml-language-server'] = 'yamlls',
['docker-langserver'] = 'dockerls',
}
for exe,ls in pairs(simple_ls) do
for exe, ls in pairs(simple_ls) do
if vim.fn.executable(exe) > 0 then
lspconfig[ls].setup({
on_attach = on_attach,