summaryrefslogtreecommitdiffstats
path: root/after/plugin/lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--after/plugin/lsp.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/after/plugin/lsp.lua b/after/plugin/lsp.lua
index f167095..c74eaab 100644
--- a/after/plugin/lsp.lua
+++ b/after/plugin/lsp.lua
@@ -57,10 +57,15 @@ vim.diagnostic.config({
severity_sort = true,
})
-vim.lsp.handlers['textDocument/hover'] = vim.lsp.with(vim.lsp.handlers.hover,
- { border = 'shadow', })
+vim.lsp.handlers['textDocument/hover'] = vim.lsp.with(
+ vim.lsp.handlers.hover, {
+ border = 'solid',
+ })
+
vim.lsp.handlers['textDocument/signatureHelp'] = vim.lsp.with(
- vim.lsp.handlers.signature_help, { border = 'shadow' })
+ vim.lsp.handlers.signature_help, {
+ border = 'solid',
+ })
-- get servers and attach to them
local status_ok1, mason = pcall(require, "mason")