You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim/lua/catppuccin/groups/integrations/gitgutter.lua

11 lines
170 B
Lua

local M = {}
function M.get()
return {
GitGutterAdd = { fg = cp.green },
GitGutterChange = { fg = cp.yellow },
GitGutterDelete = { fg = cp.red },
}
end
return M