summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/org-bullets.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/plugins/org-bullets.lua')
-rw-r--r--lua/ben/plugins/org-bullets.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/lua/ben/plugins/org-bullets.lua b/lua/ben/plugins/org-bullets.lua
new file mode 100644
index 0000000..2cac205
--- /dev/null
+++ b/lua/ben/plugins/org-bullets.lua
@@ -0,0 +1,25 @@
+return {
+ "akinsho/org-bullets.nvim",
+ dependencies = {
+ {
+ "nvim-orgmode/orgmode",
+ dependencies = "nvim-treesitter/nvim-treesitter",
+ },
+ },
+ -- Only load org-bullets while in actual org files
+ ft = { "org" },
+ config = function()
+ require("org-bullets").setup({
+ symbols = {
+ concealcursor = false,
+ list = "",
+ headlines = { "◉", "○", "󰮍", "󱥸" },
+ checkboxes = {
+ half = { "", "OrgTSCheckboxHalfChecked" },
+ done = { "", "OrgTSCheckboxDone" },
+ todo = { "", "OrgTSCheckboxTODO" },
+ },
+ },
+ })
+ end,
+}