kickstart.nvim/lua/custom/plugins/taskwarrior.lua.off

11 lines
250 B
Plaintext
Raw Normal View History

2025-03-18 13:03:54 +01:00
return {
'ribelo/taskwarrior.nvim',
-- opts = {},
config = function()
local tw = require 'taskwarrior_nvim'
vim.keymap.set('n', '<leader>tw', function()
tw.browser { 'ready' }
end, { desc = 'taskwarrior Telescope' })
end,
}