89 lines
2.1 KiB
Lua
89 lines
2.1 KiB
Lua
return {
|
|
"folke/noice.nvim",
|
|
event = "VeryLazy",
|
|
dependencies = {
|
|
-- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
|
|
"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",
|
|
opts = {
|
|
background_colour = "#000000",
|
|
}
|
|
},
|
|
},
|
|
opts = {
|
|
lsp = {
|
|
override = {
|
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
|
["vim.lsp.util.stylize_markdown"] = true,
|
|
["cmp.entry.get_documentation"] = true,
|
|
},
|
|
},
|
|
routes = {
|
|
{
|
|
filter = {
|
|
event = "msg_show",
|
|
any = {
|
|
{ find = "%d+L, %d+B" },
|
|
{ find = "; after #%d+" },
|
|
{ find = "; before #%d+" },
|
|
},
|
|
},
|
|
view = "mini",
|
|
},
|
|
},
|
|
presets = {
|
|
bottom_search = true,
|
|
command_palette = true,
|
|
long_message_to_split = true,
|
|
inc_rename = true,
|
|
},
|
|
},
|
|
-- stylua: ignore
|
|
keys = {
|
|
{
|
|
"<S-Enter>",
|
|
function() require("noice").redirect(vim.fn.getcmdline()) end,
|
|
mode = "c",
|
|
desc =
|
|
"Redirect Cmdline"
|
|
},
|
|
{
|
|
"<leader>unl",
|
|
function() require("noice").cmd("last") end,
|
|
desc =
|
|
"Noice Last Message"
|
|
},
|
|
{
|
|
"<leader>unh",
|
|
function() require("noice").cmd("history") end,
|
|
desc =
|
|
"Noice History"
|
|
},
|
|
{ "<leader>una", function() require("noice").cmd("all") end, desc = "Noice All" },
|
|
{ "<leader>und", function() require("noice").cmd("dismiss") end, desc = "Dismiss All" },
|
|
{
|
|
"<c-f>",
|
|
function() if not require("noice.lsp").scroll(4) then return "<c-f>" end end,
|
|
silent = true,
|
|
expr = true,
|
|
desc =
|
|
"Scroll forward",
|
|
mode = {
|
|
"i", "n", "s" }
|
|
},
|
|
{
|
|
"<c-b>",
|
|
function() if not require("noice.lsp").scroll(-4) then return "<c-b>" end end,
|
|
silent = true,
|
|
expr = true,
|
|
desc =
|
|
"Scroll backward",
|
|
mode = {
|
|
"i", "n", "s" }
|
|
},
|
|
},
|
|
}
|