summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/colors.lua9
-rw-r--r--lua/plugins/orgmode.lua19
2 files changed, 25 insertions, 3 deletions
diff --git a/lua/plugins/colors.lua b/lua/plugins/colors.lua
new file mode 100644
index 0000000..c971101
--- /dev/null
+++ b/lua/plugins/colors.lua
@@ -0,0 +1,9 @@
+return {
+ { -- Easy color conversions (rgb, hex, hsl, ...)
+ "amadeus/vim-convert-color-to"
+ },
+ { -- Highlight hex/rgb colors inside code
+ "norcalli/nvim-colorizer.lua",
+ config = true,
+ },
+}
diff --git a/lua/plugins/orgmode.lua b/lua/plugins/orgmode.lua
index 83deb26..a16888e 100644
--- a/lua/plugins/orgmode.lua
+++ b/lua/plugins/orgmode.lua
@@ -6,13 +6,26 @@ return {
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: