Update diagnostic config to be less obnoxious

This commit is contained in:
Jonathan DeMasi
2025-09-15 21:33:27 -06:00
parent 99d73450e8
commit e6058167d0

View File

@@ -5,7 +5,7 @@ vim.keymap.set('n', '<leader>f', '<cmd>Oil --float . <cr>', { desc = "Find files
vim.diagnostic.config({ vim.diagnostic.config({
virtual_text = true, -- Display diagnostics as inline text virtual_text = true, -- Display diagnostics as inline text
-- Other options can be added here, like: -- Other options can be added here, like:
-- signs = true, -- Show icons in the gutter signs = false, -- Show icons in the gutter
-- underline = true, -- Highlight the affected text underline = true, -- Highlight the affected text
}) })
vim.cmd 'colorscheme atom-dark-256' vim.cmd 'colorscheme atom-dark-256'