diff options
| -rw-r--r-- | noice.lua | 35 |
1 files changed, 30 insertions, 5 deletions
@@ -1,7 +1,32 @@ return { - "lukas-reineke/indent-blankline.nvim", - main = "ibl", - ---@module "ibl" - ---@type ibl.config - opts = {}, + "folke/noice.nvim", + event = "VeryLazy", + dependencies = { + "MunifTanjim/nui.nvim", + { + "rcarriga/nvim-notify", + opts = { + background_colour = "#000000", -- Fixes the "NotifyBackground" error + render = "minimal", -- Cleaner look for transparent terminals + }, + }, + }, + opts = { + lsp = { + -- override markdown rendering so that **cmp** and other plugins use **Treesitter** + 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, -- keeps search at the bottom + command_palette = true, -- centered cmdline and popupmenu + long_message_to_split = true, -- sends long messages to a buffer + inc_rename = false, + lsp_doc_border = true, -- enabled this for better readability + }, + -- Add views/routes here if you want to filter specific messages + }, } |
