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, 0 insertions, 25 deletions
diff --git a/lua/ben/plugins/org-bullets.lua b/lua/ben/plugins/org-bullets.lua
deleted file mode 100644
index 2cac205..0000000
--- a/lua/ben/plugins/org-bullets.lua
+++ /dev/null
@@ -1,25 +0,0 @@
-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,
-}