home: vim: move diagnostics config to 'on_attach'
This commit is contained in:
parent
336d86d2d8
commit
d3c04107bf
2 changed files with 22 additions and 20 deletions
|
|
@ -1,20 +0,0 @@
|
|||
lua << EOF
|
||||
vim.diagnostic.config({
|
||||
-- Disable virtual test next to affected regions
|
||||
virtual_text = false,
|
||||
-- Show diagnostics signs
|
||||
signs = true,
|
||||
-- Underline offending regions
|
||||
underline = true,
|
||||
-- Do not bother me in the middle of insertion
|
||||
update_in_insert = false,
|
||||
-- Show highest severity first
|
||||
severity_sort = true,
|
||||
})
|
||||
EOF
|
||||
|
||||
augroup DiagnosticsHover
|
||||
autocmd!
|
||||
" Show diagnostics on "hover"
|
||||
autocmd! CursorHold,CursorHoldI * lua vim.diagnostic.open_float(nil, {focus=false, scope="cursor"})
|
||||
augroup END
|
||||
Loading…
Add table
Add a link
Reference in a new issue