11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
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,
|
|
}
|