nvim: init: Do not use underline for diagnostic

This commit is contained in:
Sanchayan Maity 2022-01-31 17:44:36 +05:30
parent 674e3fa3f6
commit 572ff25150
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ vim.g.matchup_surround_enabled = 1
vim.api.nvim_command('set rtp-=/usr/share/vim/vimfiles')
-- Disable virtual text for all diagnostics
vim.diagnostic.config({
underline = true,
underline = false,
signs = true,
virtual_text = false,
update_in_insert = false,