Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
231tr0n authored Sep 16, 2024
2 parents 5cf145d + 817bb6f commit ae4524a
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/tokyonight.nvim.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*tokyonight.nvim.txt* For Neovim Last change: 2024 August 31
*tokyonight.nvim.txt* For Neovim Last change: 2024 September 16

==============================================================================
Table of Contents *tokyonight.nvim-table-of-contents*
Expand Down
4 changes: 4 additions & 0 deletions extras/lua/tokyonight_day.lua
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ local highlights = {
CmpItemKindSnippet = "LspKindSnippet",
CmpItemKindString = "LspKindString",
CmpItemKindStruct = "LspKindStruct",
CmpItemKindSupermaven = {
bg = "NONE",
fg = "#118c74"
},
CmpItemKindTabNine = {
bg = "NONE",
fg = "#118c74"
Expand Down
4 changes: 4 additions & 0 deletions extras/lua/tokyonight_moon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ local highlights = {
CmpItemKindSnippet = "LspKindSnippet",
CmpItemKindString = "LspKindString",
CmpItemKindStruct = "LspKindStruct",
CmpItemKindSupermaven = {
bg = "NONE",
fg = "#4fd6be"
},
CmpItemKindTabNine = {
bg = "NONE",
fg = "#4fd6be"
Expand Down
4 changes: 4 additions & 0 deletions extras/lua/tokyonight_night.lua
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ local highlights = {
CmpItemKindSnippet = "LspKindSnippet",
CmpItemKindString = "LspKindString",
CmpItemKindStruct = "LspKindStruct",
CmpItemKindSupermaven = {
bg = "NONE",
fg = "#1abc9c"
},
CmpItemKindTabNine = {
bg = "NONE",
fg = "#1abc9c"
Expand Down
4 changes: 4 additions & 0 deletions extras/lua/tokyonight_storm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,10 @@ local highlights = {
CmpItemKindSnippet = "LspKindSnippet",
CmpItemKindString = "LspKindString",
CmpItemKindStruct = "LspKindStruct",
CmpItemKindSupermaven = {
bg = "NONE",
fg = "#1abc9c"
},
CmpItemKindTabNine = {
bg = "NONE",
fg = "#1abc9c"
Expand Down
1 change: 1 addition & 0 deletions lua/tokyonight/groups/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ function M.get(c, opts)
CmpItemAbbrMatchFuzzy = { fg = c.blue1, bg = c.none },
CmpItemKindCodeium = { fg = c.teal, bg = c.none },
CmpItemKindCopilot = { fg = c.teal, bg = c.none },
CmpItemKindSupermaven = { fg = c.teal, bg = c.none },
CmpItemKindDefault = { fg = c.fg_dark, bg = c.none },
CmpItemKindTabNine = { fg = c.teal, bg = c.none },
CmpItemMenu = { fg = c.comment, bg = c.none },
Expand Down
2 changes: 1 addition & 1 deletion lua/tokyonight/groups/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function M.setup(colors, opts)
colors = colors,
plugins = names,
version = Config.version,
opts = { styles = opts.styles, dim_inactive = opts.dim_inactive },
opts = { transparent = opts.transparent, styles = opts.styles, dim_inactive = opts.dim_inactive },
}

local ret = cache and vim.deep_equal(inputs, cache.inputs) and cache.groups
Expand Down

0 comments on commit ae4524a

Please sign in to comment.