Nvim: fixed borders of floating windows
This commit is contained in:
parent
c27c237eda
commit
63139c9550
2 changed files with 9 additions and 5 deletions
|
@ -14,7 +14,13 @@ return {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
show_buffer_close_icons = false,
|
show_buffer_close_icons = false,
|
||||||
}
|
},
|
||||||
|
highlights = {
|
||||||
|
buffer_selected = {
|
||||||
|
fg = "#d8a657",
|
||||||
|
bg = "#141617",
|
||||||
|
},
|
||||||
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,10 +67,8 @@ return {
|
||||||
})
|
})
|
||||||
|
|
||||||
-- LSP settings (for overriding per client)
|
-- LSP settings (for overriding per client)
|
||||||
local handlers = {
|
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = border })
|
||||||
["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = border }),
|
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signatureHelp, { border = border })
|
||||||
["textDocument/signatureHelp"] = vim.lsp.with(vim.lsp.handlers.signature_help, { border = border }),
|
|
||||||
}
|
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue