-
Beta Was this translation helpful? Give feedback.
Answered by
BWindey
Oct 31, 2024
Replies: 2 comments
-
|
Welp, just answered my own question. My update config: return {
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
-- TODO:
--
-- ASK: th
config = function ()
local wk = require("which-key")
wk.add({
mode = 'n',
{ "<leader>t", group = "Todo's..." },
{ "<leader>td", "<CMD>TodoQuickFix<CR>", desc = "QuickFix-list with all Todo's" },
{ "<leader>tt", "<CMD>TodoTelescope<CR>", desc = "Telescope with all Todo's" },
})
require("todo-comments").setup({
keywords = {
ASK = { icon = "?", color = "hint", alt = { "QUESTION" } },
},
})
end
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
BWindey
-
|
I had the same issue as @BWindey, but it's fixed now. +1 for the docs |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Welp, just answered my own question.
I think it could have been better explained in the docs, but you don't need to edit the
opstable, but you have to pass the custom configuration to thesetup()function insideconfig = { ... }.My update config: