From 5a26d0507a035065eec529793d5347ebb026485e Mon Sep 17 00:00:00 2001 From: Dinesh Salunke Date: Sat, 5 Apr 2025 17:56:10 +0530 Subject: [PATCH] refactor: add todo comments plugin --- lua/plugins/todo-comments.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lua/plugins/todo-comments.lua diff --git a/lua/plugins/todo-comments.lua b/lua/plugins/todo-comments.lua new file mode 100644 index 0000000..5e46109 --- /dev/null +++ b/lua/plugins/todo-comments.lua @@ -0,0 +1,8 @@ +return { + { + "folke/todo-comments.nvim", + event = "VimEnter", + dependencies = { "nvim-lua/plenary.nvim" }, + opts = { signs = false }, + }, +}