From 90191c918a83a4e2558fc78638f1283265b69bf3 Mon Sep 17 00:00:00 2001 From: zeekling Date: Sun, 11 Aug 2024 20:38:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0Comment=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/plugins/comment.lua | 5 +++++ lua/plugins/plugin-base.lua | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 lua/plugins/comment.lua diff --git a/lua/plugins/comment.lua b/lua/plugins/comment.lua new file mode 100644 index 0000000..0009823 --- /dev/null +++ b/lua/plugins/comment.lua @@ -0,0 +1,5 @@ +return { + "folke/todo-comments.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = {}, +} diff --git a/lua/plugins/plugin-base.lua b/lua/plugins/plugin-base.lua index 7ff6ba7..b4e0d2f 100644 --- a/lua/plugins/plugin-base.lua +++ b/lua/plugins/plugin-base.lua @@ -229,4 +229,8 @@ return { }) end, }, + { + "felipec/vim-sanegx", + event = "BufRead", + }, }