summaryrefslogtreecommitdiff
path: root/lua/ben/plugins/orgmode.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-09-24 09:00:56 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2023-09-24 09:00:56 -0400
commit7af7475ebbb47e376286866accb9c1822237e6de (patch)
tree9b65aa1a2f20c2f811a06392f9fe4c067a2cdc8d /lua/ben/plugins/orgmode.lua
parent273545e803d66b626eeec19ec225c336957c23f1 (diff)
V4 of my lua config
Diffstat (limited to 'lua/ben/plugins/orgmode.lua')
-rw-r--r--lua/ben/plugins/orgmode.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/ben/plugins/orgmode.lua b/lua/ben/plugins/orgmode.lua
index 1007b0a..8a0c023 100644
--- a/lua/ben/plugins/orgmode.lua
+++ b/lua/ben/plugins/orgmode.lua
@@ -2,6 +2,26 @@ return {
"nvim-orgmode/orgmode",
dependencies = {
{ "nvim-treesitter/nvim-treesitter", lazy = true },
+ { "dhruvasagar/vim-table-mode", lazy = true },
+ {
+ "akinsho/org-bullets.nvim",
+ enable = false,
+ lazy = true,
+ config = function()
+ require("org-bullets").setup({
+ symbols = {
+ concealcursor = false,
+ list = "",
+ headlines = { "◉", "○", "󰮍", "󱥸" },
+ checkboxes = {
+ half = { "", "OrgTSCheckboxHalfChecked" },
+ done = { "", "OrgTSCheckboxDone" },
+ todo = { "", "OrgTSCheckboxTODO" },
+ },
+ },
+ })
+ end,
+ },
},
event = "VeryLazy",
config = function()