Skip to content

Commit

Permalink
feat: added support for supermaven & codeium
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Nov 13, 2024
1 parent ce91ba4 commit 38d01f7
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lua/tokyonight/groups/codeium.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
local M = {}

M.url = "https://github.com/Exafunction/codeium.nvim"

---@type tokyonight.HighlightsFn
function M.get(c, opts)
-- stylua: ignore
local ret = {
CodeiumSuggestion = { fg = c.terminal_black },
}
return ret
end

return M
2 changes: 2 additions & 0 deletions lua/tokyonight/groups/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ M.plugins = {
["barbar.nvim"] = "barbar",
["blink.cmp"] = "blink",
["bufferline.nvim"] = "bufferline",
["codeium.nvim"] = "codeium",
["copilot.lua"] = "copilot",
["dashboard-nvim"] = "dashboard",
["flash.nvim"] = "flash",
Expand Down Expand Up @@ -60,6 +61,7 @@ M.plugins = {
["rainbow-delimiters.nvim"] = "rainbow",
["render-markdown.nvim"] = "render-markdown",
["snacks.nvim"] = "snacks",
["supermaven-nvim"] = "supermaven",
["telescope.nvim"] = "telescope",
["trouble.nvim"] = "trouble",
["vim-gitgutter"] = "gitgutter",
Expand Down
14 changes: 14 additions & 0 deletions lua/tokyonight/groups/supermaven.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
local M = {}

M.url = "https://github.com/supermaven-inc/supermaven-nvim"

---@type tokyonight.HighlightsFn
function M.get(c, opts)
-- stylua: ignore
local ret = {
SupermavenSuggestion = { fg = c.terminal_black },
}
return ret
end

return M
1 change: 1 addition & 0 deletions lua/tokyonight/groups/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function M.get(c, opts)
["@punctuation.bracket"] = { fg = c.fg_dark }, -- For brackets and parens.
["@punctuation.delimiter"] = { fg = c.blue5 }, -- For delimiters ie: `.`
["@punctuation.special"] = { fg = c.blue5 }, -- For special symbols (e.g. `{}` in string interpolation)
["@punctuation.special.markdown"] = { fg = c.orange }, -- For special symbols (e.g. `{}` in string interpolation)
["@string"] = "String",
["@string.documentation"] = { fg = c.yellow },
["@string.escape"] = { fg = c.magenta }, -- For escape characters within a string.
Expand Down

0 comments on commit 38d01f7

Please sign in to comment.