mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-13 02:31:13 +00:00
32 lines
422 B
Lua
32 lines
422 B
Lua
require("noice").setup({
|
|
presets = {
|
|
bottom_search = true,
|
|
command_palette = false,
|
|
},
|
|
cmdline = {
|
|
view = "cmdline",
|
|
},
|
|
views = {
|
|
mini = {
|
|
backend = "mini",
|
|
align = "message-left",
|
|
position = {
|
|
row = -1,
|
|
col = "0%",
|
|
},
|
|
},
|
|
},
|
|
messages = {
|
|
view_search = false,
|
|
},
|
|
routes = {
|
|
{
|
|
filter = {
|
|
event = "lsp",
|
|
find = "diagnostics",
|
|
},
|
|
opts = { skip = true },
|
|
},
|
|
},
|
|
})
|