summaryrefslogtreecommitdiff
path: root/lua/plugins/orgmode.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/orgmode.lua')
-rw-r--r--lua/plugins/orgmode.lua22
1 files changed, 17 insertions, 5 deletions
diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua
index fa1281a..fccd341 100644
--- a/lua/plugins/orgmode.lua
+++ b/lua/plugins/orgmode.lua
@@ -5,14 +5,26 @@ return {
"akinsho/org-bullets.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
- },
- config = true,
- },
- {
+ },
+ config = function()
+ local bullets = require('org-bullets')
+ bullets.setup {
+ symbols = {
+ -- list items
+ list = "",
+ checkboxes = {
+ done = { "", "OrgDone" }, -- or 
+ todo = { "", "OrgTodo" }, -- or 
+ half = { "", "OrgHalf" }, -- or 
+ },
+ },
+ }
+ end,
+ }, { -- Format tables easily
"dhruvasagar/vim-table-mode",
},
},
- event = 'VeryLazy',
+ event = { "BufEnter", "BufNewFile" },
ft = { 'org' },
config = function()
-- This is bound to org-modern: