summaryrefslogtreecommitdiff
path: root/noice.lua
diff options
context:
space:
mode:
authorfilip <“filip.rabiega@gmail.com”>2026-02-09 11:10:59 +0100
committerfilip <“filip.rabiega@gmail.com”>2026-02-09 11:10:59 +0100
commit49f248ea71b796d44c5080926f31f585d910f66c (patch)
treec1f170bdb3da3c633eff17d29d0fc23fd83db4c7 /noice.lua
parent1f8ff76382b23aad44a02de06bd8dd0c18bc0434 (diff)
downloadlazy-plugins-49f248ea71b796d44c5080926f31f585d910f66c.tar.gz
lazy-plugins-49f248ea71b796d44c5080926f31f585d910f66c.tar.bz2
lazy-plugins-49f248ea71b796d44c5080926f31f585d910f66c.zip
add noice.lua
Diffstat (limited to 'noice.lua')
-rw-r--r--noice.lua35
1 files changed, 30 insertions, 5 deletions
diff --git a/noice.lua b/noice.lua
index 84cbd72..2762d64 100644
--- a/noice.lua
+++ b/noice.lua
@@ -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
+ },
}