Change theme to moonfly

This commit is contained in:
2023-12-17 23:23:47 +01:00
parent aa415ec76c
commit 8ccb9684f5
5 changed files with 61 additions and 83 deletions
+12 -1
View File
@@ -71,7 +71,7 @@ function P._setup_diagnostics()
float = {
show_header = false,
source = "always",
border = "rounded",
border = "single",
focusable = false,
format = function (diagnostic)
return string.format("%s", diagnostic.message)
@@ -129,6 +129,17 @@ function P.on_attach(client, bufnr)
vim.opt.updatetime = 300
require("lsp-inlayhints").on_attach(client, bufnr, false)
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"
}
)
end
function P.reload_server_buf(name)