Skip to content

Commit 04d33f5

Browse files
committed
feat: copilot ghost text
1 parent c3d0838 commit 04d33f5

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

lua/tokyonight/groups/copilot.lua

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
local M = {}
2+
3+
M.url = "https://github.com/zbirenbaum/copilot.lua"
4+
5+
---@type tokyonight.HighlightsFn
6+
function M.get(c, opts)
7+
-- stylua: ignore
8+
local ret = {
9+
CopilotAnnotation = { fg = c.terminal_black },
10+
CopilotSuggestion = { fg = c.terminal_black },
11+
}
12+
return ret
13+
end
14+
15+
return M

lua/tokyonight/groups/init.lua

+1
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+
["copilot.lua"] = "copilot",
1415
["dashboard-nvim"] = "dashboard",
1516
["flash.nvim"] = "flash",
1617
["fzf-lua"] = "fzf",

0 commit comments

Comments
 (0)