Skip to content

Commit

Permalink
feat: integration for nvim-orgmode/orgmode (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiendo97 authored Nov 18, 2024
1 parent 16ee0e9 commit 8971be5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions lua/base46/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ local integrations = {
"mason",
"nvcheatsheet",
"nvimtree",
"orgmode",
"statusline",
"syntax",
"treesitter",
Expand Down
10 changes: 10 additions & 0 deletions lua/base46/integrations/orgmode.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
local colors = require("base46").get_theme_tb "base_30"

return {
["@org.headline.level1.org"] = { fg = colors.red },
["@org.headline.level2.org"] = { fg = colors.orange },
["@org.headline.level3.org"] = { fg = colors.yellow },
["@org.headline.level4.org"] = { fg = colors.green },
["@org.headline.level5.org"] = { fg = colors.blue },
["@org.headline.level6.org"] = { fg = colors.purple },
}

0 comments on commit 8971be5

Please sign in to comment.