File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ M.plugins = {
61
61
[" vim-glyph-palette" ] = " glyph-palette" ,
62
62
[" vim-illuminate" ] = " illuminate" ,
63
63
[" vim-sneak" ] = " sneak" ,
64
+ [" vimwiki" ] = " vimwiki" ,
64
65
[" which-key.nvim" ] = " which-key" ,
65
66
[" yanky.nvim" ] = " yanky"
66
67
}
Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ M .url = " https://github.com/lukas-reineke/headlines.nvim"
4
+
5
+ --- @type tokyonight.HighlightsFn
6
+ function M .get (c , opts )
7
+ -- stylua: ignore
8
+ local ret = {
9
+ VimwikiLink = { fg = c .blue , bg = c .none },
10
+ VimwikiHeaderChar = { fg = c .yellow , bg = c .none },
11
+ VimwikiHR = { fg = c .yellow , bg = c .none },
12
+ VimwikiList = { fg = c .orange , bg = c .none },
13
+ VimwikiTag = { fg = c .green , bg = c .none },
14
+ VimwikiMarkers = { fg = c .blue , bg = c .none },
15
+ }
16
+ for i , color in ipairs (c .rainbow ) do
17
+ ret [" VimwikiHeaer" .. i ] = { fg = color , bg = c .none , bold = true }
18
+ end
19
+ return ret
20
+ end
21
+
22
+ return M
You can’t perform that action at this time.
0 commit comments