Skip to content

Commit 38d01f7

Browse files
committed
feat: added support for supermaven & codeium
1 parent ce91ba4 commit 38d01f7

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

lua/tokyonight/groups/codeium.lua

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

lua/tokyonight/groups/init.lua

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ M.plugins = {
1111
["barbar.nvim"] = "barbar",
1212
["blink.cmp"] = "blink",
1313
["bufferline.nvim"] = "bufferline",
14+
["codeium.nvim"] = "codeium",
1415
["copilot.lua"] = "copilot",
1516
["dashboard-nvim"] = "dashboard",
1617
["flash.nvim"] = "flash",
@@ -60,6 +61,7 @@ M.plugins = {
6061
["rainbow-delimiters.nvim"] = "rainbow",
6162
["render-markdown.nvim"] = "render-markdown",
6263
["snacks.nvim"] = "snacks",
64+
["supermaven-nvim"] = "supermaven",
6365
["telescope.nvim"] = "telescope",
6466
["trouble.nvim"] = "trouble",
6567
["vim-gitgutter"] = "gitgutter",

lua/tokyonight/groups/supermaven.lua

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

lua/tokyonight/groups/treesitter.lua

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ function M.get(c, opts)
7878
["@punctuation.bracket"] = { fg = c.fg_dark }, -- For brackets and parens.
7979
["@punctuation.delimiter"] = { fg = c.blue5 }, -- For delimiters ie: `.`
8080
["@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)
8182
["@string"] = "String",
8283
["@string.documentation"] = { fg = c.yellow },
8384
["@string.escape"] = { fg = c.magenta }, -- For escape characters within a string.

0 commit comments

Comments
 (0)