This commit is contained in:
2025-08-28 23:17:34 +02:00
parent fe3886fbdf
commit 20a49c3f58
31 changed files with 440 additions and 117 deletions

View File

@@ -1,31 +1,35 @@
-- Noice (Nice, Noise, Notice)
-- noice (Nice, Noise, Notice)
--
-- Highly experimental plugin that completely replaces the UI for messages, cmdline and the popupmenu.
--
-- https://github.com/folke/noice.nvim
--
return {
{ -- Noice
"folke/noice.nvim",
event = "VeryLazy",
'folke/noice.nvim',
event = 'VeryLazy',
opts = {
-- add any options here
},
dependencies = {
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
"MunifTanjim/nui.nvim",
'MunifTanjim/nui.nvim',
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"rcarriga/nvim-notify",
'rcarriga/nvim-notify',
},
config = function()
local noice = require('noice')
local noice = require 'noice'
noice.setup({
noice.setup {
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, -- requires hrsh7th/nvim-cmp
['vim.lsp.util.convert_input_to_markdown_lines'] = true,
['vim.lsp.util.stylize_markdown'] = true,
['cmp.entry.get_documentation'] = true, -- requires hrsh7th/nvim-cmp
},
},
-- you can enable a preset for easier configuration
@@ -36,7 +40,8 @@ return {
inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help
},
})
}
end,
}
}
},
}