mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
39 lines
827 B
Nix
39 lines
827 B
Nix
{
|
|
plugins.noice = {
|
|
enable = true;
|
|
settings = {
|
|
lsp = {
|
|
override = {
|
|
"vim.lsp.util.convert_input_to_markdown_lines" = true;
|
|
"vim.lsp.util.stylize_markdown" = true;
|
|
"cmp.entry.get_documentation" = true;
|
|
};
|
|
progress.enabled = true;
|
|
};
|
|
|
|
presets = {
|
|
bottom_search = true;
|
|
command_palette = true;
|
|
long_message_to_split = true;
|
|
inc_rename = true;
|
|
lsp_doc_border = true;
|
|
};
|
|
notify.enabled = true;
|
|
|
|
routes = [
|
|
{
|
|
filter = {
|
|
event = "msg_show";
|
|
any = [
|
|
{find = "%d+L, %d+B";}
|
|
{find = "; after #%d+";}
|
|
{find = "; before #%d+";}
|
|
];
|
|
};
|
|
view = "mini";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|