mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
Currently we represent `vim.diagnostic.config()` as a top-level `diagnostics` option. This means we have no clear namespace for (e.g.) `vim.diagnostic.<action>` keymap functions.
8 lines
125 B
Nix
8 lines
125 B
Nix
{
|
|
example = {
|
|
diagnostic.config = {
|
|
virtual_text = false;
|
|
virtual_lines.current_line = true;
|
|
};
|
|
};
|
|
}
|