feat:add_nixvim

This commit is contained in:
dichgrem
2025-09-21 15:54:31 +08:00
parent c36f91562d
commit 8016a1173d
64 changed files with 3608 additions and 30 deletions

View File

@@ -0,0 +1,38 @@
{
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";
}
];
};
};
}