This commit is contained in:
eleith 2023-02-04 23:34:11 +00:00
parent 22cedff504
commit 4e34db4b88
2 changed files with 7 additions and 3 deletions

View File

@ -63,12 +63,14 @@ augroup END]])
vim.opt.completeopt = "menuone,noselect"
vim.diagnostic.config({ virtual_text = false, float = { border = border } })
-- https://github.com/neovim/neovim/issues/17070#issuecomment-1086775760
if vim.env.TERM == "tmux-256color" then
vim.loop.fs_write(2, "\27Ptmux;\27\27]11;?\7\27\\", -1, nil)
end
-- load plugins folder with lazy.nvim
require("lazy").setup("plugins")
require("lazy").setup("plugins", {
ui = {
border = "rounded",
},
})

View File

@ -20,6 +20,8 @@ return {
{ "", "FloatBorder" },
}
vim.diagnostic.config({ virtual_text = false, float = { border = border } })
-- LSP settings (for overriding per client)
local handlers = {
["textDocument/hover"] = vim.lsp.with(vim.lsp.handlers.hover, { border = border }),