|
1 | 1 | require("github-theme").setup({ |
2 | | - function_style = "italic", |
3 | | - sidebars = {"qf", "vista_kind", "terminal", "packer"}, |
| 2 | + options = { |
| 3 | + function_style = "italic", |
| 4 | + sidebars = {"qf", "vista_kind", "terminal", "packer"}, |
4 | 5 |
|
5 | | - -- Change the "hint" color to the "orange" color, and make the "error" color bright red |
6 | | - colors = {hint = "orange", error = "#ff0000"}, |
| 6 | + -- Change the "hint" color to the "orange" color, and make the "error" color bright red |
| 7 | + colors = {hint = "orange", error = "#ff0000"}, |
7 | 8 |
|
8 | | - vim.cmd('colorscheme github_dark'), |
9 | | - -- Overwrite the highlight groups |
10 | | - overrides = function(c) |
11 | | - return { |
12 | | - htmlTag = {fg = c.red, bg = "#282c34", sp = c.hint, style = "underline"}, |
13 | | - DiagnosticHint = {link = "LspDiagnosticsDefaultHint"}, |
14 | | - -- this will remove the highlight groups |
15 | | - TSField = {}, |
16 | | - } |
17 | | - end |
| 9 | + vim.cmd('colorscheme github_dark'), |
| 10 | + -- Overwrite the highlight groups |
| 11 | + overrides = function(c) |
| 12 | + return { |
| 13 | + htmlTag = {fg = c.red, bg = "#282c34", sp = c.hint, style = "underline"}, |
| 14 | + DiagnosticHint = {link = "LspDiagnosticsDefaultHint"}, |
| 15 | + -- this will remove the highlight groups |
| 16 | + TSField = {}, |
| 17 | + } |
| 18 | + end |
| 19 | + } |
18 | 20 | }) |
0 commit comments