-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tiny-inline-diagnostic): modify hl
- Loading branch information
Showing
3 changed files
with
16 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
(let [M (require :tiny-inline-diagnostic) | ||
hi {:error :DiagnosticError | ||
:warn :DiagnosticWarn | ||
:info :DiagnosticInfo | ||
:hint :DiagnosticHint | ||
:arrow :NonText | ||
:background :Normal | ||
:mixing_color :None} | ||
options {:show_source false | ||
:use_icons_from_diagnostic false | ||
:add_messages true | ||
:throttle 150 | ||
:softwrap 30 | ||
:softwrap 50 | ||
:multiple_diag_under_cursor false | ||
:multilines {:enabled false :always_show false} | ||
:show_all_diags_on_cursorline false | ||
:enable_on_insert false | ||
:enable_on_select false | ||
:overflow {:mode :wrap} | ||
:break_line {:enabled false :after 30} | ||
:break_line {:enabled false :after 50} | ||
:format nil | ||
:virt_texts {:priority 2048} | ||
:severity [vim.diagnostic.severity.ERROR | ||
vim.diagnostic.severity.WARN | ||
vim.diagnostic.severity.INFO | ||
vim.diagnostic.severity.HINT] | ||
:overwrite_events nil}] | ||
(M.setup {:preset :nonerdfont : options})) | ||
(M.setup {:preset :simple : hi : options})) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.