diff options
author | Squibid <me@zacharyscheiman.com> | 2024-04-25 22:59:22 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-04-25 22:59:22 -0400 |
commit | 527e3af442423e10c6431300773be26c933a1886 (patch) | |
tree | a004c9fbd8fb3caad8eb46181ca83d5dc8b6b31d /after/plugin/lsp.lua | |
parent | a455b2a3b1e706e8fa63967cd6d4e540d38cc2da (diff) | |
download | nvim-527e3af442423e10c6431300773be26c933a1886.tar.gz nvim-527e3af442423e10c6431300773be26c933a1886.tar.bz2 nvim-527e3af442423e10c6431300773be26c933a1886.zip |
make lsp related popups all look the same
Diffstat (limited to 'after/plugin/lsp.lua')
-rw-r--r-- | after/plugin/lsp.lua | 11 |
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") |