- 调整配置文件组织方式,新增init.lua作为入口 - 更新lazy-lock.json同步插件版本 - 完善lua/目录下的插件和配置模块结构 - 修改README.md补充配置说明和使用指南
11 lines
284 B
Lua
11 lines
284 B
Lua
return {
|
|
"numToStr/Comment.nvim",
|
|
dependencies = { "JoosepAlviste/nvim-ts-context-commentstring" },
|
|
config = function()
|
|
require("Comment").setup({
|
|
pre_hook = require("ts_context_commentstring.integrations.comment_nvim").create_pre_hook(),
|
|
})
|
|
end,
|
|
event = "BufReadPost",
|
|
}
|