1
Fork 0
This commit is contained in:
Matei Adriel 2022-12-05 01:18:31 +01:00
parent 32b53a7fd6
commit 811660e30a
11 changed files with 49 additions and 8 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -105,6 +105,10 @@ local servers = {
M.capabilities = require('cmp_nvim_lsp').default_capabilities()
function M.setup()
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover,
{ border = "single" })
vim.lsp.handlers["textDocument/signatureHelp"] =
vim.lsp.with(vim.lsp.handlers.signature_help, { border = "single" })
-- Setup basic language servers
for lsp, details in pairs(servers) do