mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
16 lines
422 B
Lua
16 lines
422 B
Lua
return {
|
|
{
|
|
'projekt0n/github-nvim-theme',
|
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
|
priority = 1000, -- make sure to load this before all the other start plugins
|
|
config = function()
|
|
require('github-theme').setup({
|
|
options = {
|
|
transparent = true;
|
|
}
|
|
})
|
|
|
|
vim.cmd('colorscheme github_dark_high_contrast')
|
|
end,
|
|
}
|
|
}
|