summaryrefslogtreecommitdiffstats
path: root/lua/conf/binds.lua
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2024-03-29 23:30:14 -0400
committerSquibid <me@zacharyscheiman.com>2024-03-29 23:30:14 -0400
commit46d34d9151549350d4db4c44698e76bcdb0d56bb (patch)
tree18ec9cc471df783089756d28293f5c80d7839f8f /lua/conf/binds.lua
parent2b1d1249dfd3bf4c32ebf203f2b4509c63efe096 (diff)
downloadnvim-46d34d9151549350d4db4c44698e76bcdb0d56bb.tar.gz
nvim-46d34d9151549350d4db4c44698e76bcdb0d56bb.tar.bz2
nvim-46d34d9151549350d4db4c44698e76bcdb0d56bb.zip
add todo list bind
Diffstat (limited to 'lua/conf/binds.lua')
-rw-r--r--lua/conf/binds.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/conf/binds.lua b/lua/conf/binds.lua
index 4549553..42c609e 100644
--- a/lua/conf/binds.lua
+++ b/lua/conf/binds.lua
@@ -117,6 +117,11 @@ if pcall(require, "telescope") then
end
end
+-- todo list
+if pcall(require, "todo-comments") then
+ map("n", "<leader>td", "<cmd>TodoQuickFix<CR>", { desc = 'open up list of TODO\'s' })
+end
+
-- harpoon
if (pcall(require, 'harpoon')) then
local harpoon = require("harpoon")