-
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.
- Loading branch information
Showing
5 changed files
with
29 additions
and
35 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
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,29 +1,21 @@ | ||
((. (require :tiny-inline-diagnostic) :setup) {:signs {:left "" | ||
:right "" | ||
:diag " " | ||
:arrow " " | ||
:up_arrow " " | ||
:vertical " │" | ||
:vertical_end " └"} | ||
:hi {:error :DiagnosticError | ||
:warn :DiagnosticWarn | ||
:info :DiagnosticInfo | ||
:hint :DiagnosticHint | ||
:arrow :NonText | ||
:background :CursorLine | ||
:mixing_color :None} | ||
:blend {:factor 0.27} | ||
:options {:show_source false | ||
:throttle 20 | ||
:softwrap 15 | ||
:multiple_diag_under_cursor false | ||
:multilines false | ||
:show_all_diags_on_cursorline false | ||
:overflow {:mode :none} | ||
:format nil | ||
:break_line {:enabled false | ||
:after 30} | ||
:virt_texts {:priority 2048} | ||
:severity {vim.diagnostic.severity.ERROR vim.diagnostic.severity.WARN | ||
vim.diagnostic.severity.INFO vim.diagnostic.severity.HINT} | ||
:overwrite_events nil}}) | ||
(let [M (require :tiny-inline-diagnostic) | ||
options {:show_source false | ||
:use_icons_from_diagnostic false | ||
:add_messages true | ||
:throttle 150 | ||
:softwrap 30 | ||
: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} | ||
: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})) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.