config-files/lua/plugins/org_bullets.lua
2025-11-30 02:06:38 -08:00

12 lines
268 B
Lua

return {
'akinsho/org-bullets.nvim',
config = function()
require('org-bullets').setup({
checkboxes = {
half = { '', 'OrgTSCheckboxHalfChecked' },
done = { '', 'OrgDone' },
todo = { 'x', 'OrgTODO' },
},
})
end,
}