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

18 lines
210 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,
},
})
end
return M