dotfiles/.config/nvim/lua/plugins/noice.lua

20 lines
269 B
Lua
Raw Normal View History

2022-12-30 11:48:44 +01:00
local M = {
"folke/noice.nvim",
event = "VeryLazy",
dependencies = {
"MunifTanjim/nui.nvim",
},
}
function M.config()
require("noice").setup({
presets = {
inc_rename = true,
2023-02-02 09:37:20 +01:00
long_message_to_split = true,
lsp_doc_border = true,
2022-12-30 11:48:44 +01:00
},
})
end
return M