style: use github dark theme

This commit is contained in:
Simon Lasbrugnas 2025-11-07 20:45:21 +01:00
parent 0e2c6a13c8
commit a90750d855
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE

View file

@ -21,8 +21,8 @@ return {
lazy = false, lazy = false,
priority = 1000, priority = 1000,
init = function() init = function()
-- vim.cmd("colorscheme github_dark_default") vim.o.background = "dark"
-- vim.cmd("hi Normal guibg=NONE") vim.cmd("colorscheme github_dark")
end end
}, },
{ {
@ -95,12 +95,12 @@ return {
lazy = false, lazy = false,
priority = 1000, priority = 1000,
config = function() config = function()
vim.o.background = "dark" -- vim.o.background = "dark"
vim.cmd.colorscheme("vague") -- vim.cmd.colorscheme("vague")
-- set IblScope highlighting to #1C1C1C -- set IblScope highlighting to #1C1C1C
vim.api.nvim_set_hl(0, "IblScope", { fg = "#3f3f42" }) -- vim.api.nvim_set_hl(0, "IblScope", { fg = "#3f3f42" })
vim.api.nvim_set_hl(0, "IblIndent", { fg = "#2a2a2b" }) -- vim.api.nvim_set_hl(0, "IblIndent", { fg = "#2a2a2b" })
vim.o.cursorline = false -- vim.o.cursorline = false
end end
}, },
{ {