Refactored nvim config to make it easier and less insanely nested
This commit is contained in:
24
.config/nvim/lua/plugins/tiny-inline-diagnostic.lua
Normal file
24
.config/nvim/lua/plugins/tiny-inline-diagnostic.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
return {
|
||||
'rachartier/tiny-inline-diagnostic.nvim',
|
||||
event = { 'BufReadPre', 'BufNewFile' },
|
||||
opts = {
|
||||
options = {
|
||||
-- Throttle the update of the diagnostic when moving cursor, in milliseconds.
|
||||
-- You can increase it if you have performance issues.
|
||||
-- Or set it to 0 to have better visuals.
|
||||
throttle = 0,
|
||||
|
||||
-- The minimum length of the message, otherwise it will be on a new line.
|
||||
softwrap = 15,
|
||||
|
||||
-- If multiple diagnostics are under the cursor, display all of them.
|
||||
multiple_diag_under_cursor = true,
|
||||
|
||||
--- Enable it if you want to always have message with `after` characters length.
|
||||
break_line = {
|
||||
enabled = false,
|
||||
after = 30,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user