From c2639a768a4aab7ed939d08984e4869a83c39bb6 Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Fri, 23 Jan 2026 11:01:01 +0000 Subject: added folke/todo-comment this is great! --- lua/config/todo.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lua/config/todo.lua (limited to 'lua/config/todo.lua') diff --git a/lua/config/todo.lua b/lua/config/todo.lua new file mode 100644 index 0000000..724f2c5 --- /dev/null +++ b/lua/config/todo.lua @@ -0,0 +1,15 @@ +vim.pack.add({ + "https://github.com/folke/todo-comments.nvim", +}) + +require("todo-comments").setup() + +vim.keymap.set("n", "[t", function() + require("todo-comments").jump_prev() +end) + +vim.keymap.set("n", "]t", function() + require("todo-comments").jump_next() +end) + +vim.keymap.set("n", "ft", "TodoTelescope") -- cgit v1.2.3