diff --git a/neovim/default.nix b/neovim/default.nix index 0733181..1424215 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -338,23 +338,25 @@ plugins.noice = { enable = true; - messages = { - view = "mini"; - viewError = "mini"; - viewWarn = "mini"; - }; + settings = { + messages = { + view = "mini"; + view_error = "mini"; + view_warn = "mini"; + }; - lsp.override = { - "vim.lsp.util.convert_input_to_markdown_lines" = true; - "vim.lsp.util.stylize_markdown" = true; - "cmp.entry.get_documentation" = true; - }; - presets = { - bottom_search = true; - command_palette = true; - long_message_to_split = true; - inc_rename = true; - lsp_doc_border = false; + lsp.override = { + "vim.lsp.util.convert_input_to_markdown_lines" = true; + "vim.lsp.util.stylize_markdown" = true; + "cmp.entry.get_documentation" = true; + }; + presets = { + bottom_search = true; + command_palette = true; + long_message_to_split = true; + inc_rename = true; + lsp_doc_border = false; + }; }; };