File tree 4 files changed +31
-0
lines changed
4 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ M .url = " https://github.com/Exafunction/codeium.nvim"
4
+
5
+ --- @type tokyonight.HighlightsFn
6
+ function M .get (c , opts )
7
+ -- stylua: ignore
8
+ local ret = {
9
+ CodeiumSuggestion = { fg = c .terminal_black },
10
+ }
11
+ return ret
12
+ end
13
+
14
+ return M
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ M.plugins = {
11
11
[" barbar.nvim" ] = " barbar" ,
12
12
[" blink.cmp" ] = " blink" ,
13
13
[" bufferline.nvim" ] = " bufferline" ,
14
+ [" codeium.nvim" ] = " codeium" ,
14
15
[" copilot.lua" ] = " copilot" ,
15
16
[" dashboard-nvim" ] = " dashboard" ,
16
17
[" flash.nvim" ] = " flash" ,
@@ -60,6 +61,7 @@ M.plugins = {
60
61
[" rainbow-delimiters.nvim" ] = " rainbow" ,
61
62
[" render-markdown.nvim" ] = " render-markdown" ,
62
63
[" snacks.nvim" ] = " snacks" ,
64
+ [" supermaven-nvim" ] = " supermaven" ,
63
65
[" telescope.nvim" ] = " telescope" ,
64
66
[" trouble.nvim" ] = " trouble" ,
65
67
[" vim-gitgutter" ] = " gitgutter" ,
Original file line number Diff line number Diff line change
1
+ local M = {}
2
+
3
+ M .url = " https://github.com/supermaven-inc/supermaven-nvim"
4
+
5
+ --- @type tokyonight.HighlightsFn
6
+ function M .get (c , opts )
7
+ -- stylua: ignore
8
+ local ret = {
9
+ SupermavenSuggestion = { fg = c .terminal_black },
10
+ }
11
+ return ret
12
+ end
13
+
14
+ return M
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ function M.get(c, opts)
78
78
[" @punctuation.bracket" ] = { fg = c .fg_dark }, -- For brackets and parens.
79
79
[" @punctuation.delimiter" ] = { fg = c .blue5 }, -- For delimiters ie: `.`
80
80
[" @punctuation.special" ] = { fg = c .blue5 }, -- For special symbols (e.g. `{}` in string interpolation)
81
+ [" @punctuation.special.markdown" ] = { fg = c .orange }, -- For special symbols (e.g. `{}` in string interpolation)
81
82
[" @string" ] = " String" ,
82
83
[" @string.documentation" ] = { fg = c .yellow },
83
84
[" @string.escape" ] = { fg = c .magenta }, -- For escape characters within a string.
You can’t perform that action at this time.
0 commit comments