- 调整配置文件组织方式,新增init.lua作为入口 - 更新lazy-lock.json同步插件版本 - 完善lua/目录下的插件和配置模块结构 - 修改README.md补充配置说明和使用指南
13 lines
240 B
Lua
13 lines
240 B
Lua
return {
|
|
"rcarriga/nvim-notify",
|
|
config = function()
|
|
vim.notify = require("notify")
|
|
require("notify").setup({
|
|
background_colour = "#000000",
|
|
render = "minimal",
|
|
stages = "fade_in_slide_out",
|
|
})
|
|
end,
|
|
event = "VeryLazy",
|
|
}
|