fix depreciation

This commit is contained in:
Patrick Neff 2024-11-05 06:52:14 +01:00
parent 6e0730fb9c
commit 1187a75226
1 changed files with 67 additions and 65 deletions

View File

@ -1,6 +1,7 @@
{ {
plugins.noice = { plugins.noice = {
enable = true; enable = true;
settings = {
cmdline = { cmdline = {
view = "cmdline"; view = "cmdline";
format = { format = {
@ -27,7 +28,7 @@
lang = "bash"; lang = "bash";
}; };
lua = { lua = {
pattern = ["^:%s*lua%s+" "^:%s*lua%s*=%s*" "^:%s*=%s*"]; pattern = [ "^:%s*lua%s+" "^:%s*lua%s*=%s*" "^:%s*=%s*" ];
icon = ""; icon = "";
lang = "lua"; lang = "lua";
}; };
@ -35,7 +36,7 @@
pattern = "^:%s*he?l?p?%s+"; pattern = "^:%s*he?l?p?%s+";
icon = ""; icon = "";
}; };
input = {}; input = { };
}; };
}; };
lsp = { lsp = {
@ -67,11 +68,12 @@
style = "none"; style = "none";
padding = [ 0 0 ]; padding = [ 0 0 ];
}; };
filter_options = {}; filter_options = { };
win_options = { win_options = {
winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder"; winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder";
}; };
}; };
}; };
}; };
};
} }