init (podpierdolenie)
This commit is contained in:
14
config/nvim/plugins/todo-comments.lua
Normal file
14
config/nvim/plugins/todo-comments.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
local todo_comments = require("todo-comments")
|
||||
|
||||
-- set keymaps
|
||||
local keymap = vim.keymap -- for conciseness
|
||||
|
||||
keymap.set("n", "]t", function()
|
||||
todo_comments.jump_next()
|
||||
end, { desc = "Next todo comment" })
|
||||
|
||||
keymap.set("n", "[t", function()
|
||||
todo_comments.jump_prev()
|
||||
end, { desc = "Previous todo comment" })
|
||||
|
||||
todo_comments.setup()
|
||||
Reference in New Issue
Block a user