nvim: init: Disable virtual text for all diagnostics

They frequently get clipped beyond the window border due to being too
long and are not that helpful.

While at it, use our own preferable default sane options for the rest.
This commit is contained in:
Sanchayan Maity 2021-10-20 12:11:31 +05:30
parent 0ee98bc81c
commit 9b692e9a8e
1 changed files with 14 additions and 0 deletions

View File

@ -95,6 +95,20 @@ vim.g.dispatch_no_maps = 1
-- We do this to prevent the loading of the system fzf.vim plugin. This is
-- present at least on Arch/Manjaro
vim.api.nvim_command('set rtp-=/usr/share/vim/vimfiles')
-- Disable virtual text for all diagnostics
vim.diagnostic.config({
underline = true,
signs = true,
virtual_text = false,
update_in_insert = false,
severity_sort = true,
float = {
show_header = false,
source = 'always',
border = 'rounded',
focusable = false,
},
})
require 'plugins'
require 'autocmd'