File tree 2 files changed +17
-0
lines changed
lua/leaf/hlgroups/integrations
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ function M.setup(colors, config)
15
15
require (" leaf.hlgroups.integrations.notify" ).setup (colors , config ),
16
16
require (" leaf.hlgroups.integrations.nvimtree" ).setup (colors , config ),
17
17
require (" leaf.hlgroups.integrations.smoothcursor" ).setup (colors , config ),
18
+ require (" leaf.hlgroups.integrations.telekasten" ).setup (colors , config ),
18
19
require (" leaf.hlgroups.integrations.telescope" ).setup (colors , config ),
19
20
require (" leaf.hlgroups.integrations.treesitter" ).setup (colors , config )
20
21
)
Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ --- generate telekasten highlights table
4
+ -- @param colors color (theme) color table created by require("leaf.colors").setup()
5
+ -- @param config config options (optional)
6
+ function M .setup (colors , _ )
7
+ return {
8
+ tkLink = { fg = colors .teal0 },
9
+ tkAliasedLink = { fg = colors .aqua0 },
10
+ tkBrackets = { fg = colors .bg3 },
11
+ tkHighlight = { fg = colors .purple0 },
12
+ tkTag = { fg = colors .green0 },
13
+ }
14
+ end
15
+
16
+ return M
You can’t perform that action at this time.
0 commit comments