nvim/plugin-confs/github-theme.lua

20 lines
648 B
Lua
Raw Permalink Normal View History

2022-11-02 22:50:13 -07:00
-- Example config in Lua
require("github-theme").setup({
2023-05-03 23:59:17 -07:00
-- theme_style = "dark",
-- function_style = "italic",
-- sidebars = {"qf", "vista_kind", "terminal", "packer"},
2022-11-02 22:50:13 -07:00
2023-05-03 23:59:17 -07:00
-- -- Change the "hint" color to the "orange" color, and make the "error" color bright red
-- colors = {hint = "orange", error = "#ff0000"},
2022-11-02 22:50:13 -07:00
2023-05-03 23:59:17 -07:00
-- -- Overwrite the highlight groups
-- overrides = function(c)
-- return {
-- htmlTag = {fg = c.red, bg = "#282c34", sp = c.hint, style = "underline"},
-- DiagnosticHint = {link = "LspDiagnosticsDefaultHint"},
-- -- this will remove the highlight groups
-- TSField = {},
-- }
-- end
2022-11-02 22:50:13 -07:00
})