You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
787 B
33 lines
787 B
return { |
|
"projekt0n/github-nvim-theme", |
|
lazy = false, |
|
priority = 1000, |
|
config = function() |
|
require("github-theme").setup({ |
|
options = { |
|
transparent = false, |
|
terminal_colors = true, |
|
styles = { |
|
comments = "italic", |
|
keywords = "bold", |
|
types = "italic,bold", |
|
}, |
|
}, |
|
palettes = { |
|
github_dark_default = { |
|
-- Customize the cursor line background |
|
-- You can use any hex color here |
|
bg_highlight = "#1f2428", -- Darker background for cursor line |
|
}, |
|
}, |
|
groups = { |
|
github_dark_default = { |
|
-- Or override specific highlight groups |
|
CursorLine = { bg = "#1f2428" }, |
|
-- You can also customize CursorLineNr if needed |
|
CursorLineNr = { fg = "#e1e4e8", bg = "#1f2428", bold = true }, |
|
}, |
|
}, |
|
}) |
|
end, |
|
}
|
|
|