nvim/.config/nvim/lua/crispy/plugins/github.lua (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
return {
-- Or with configuration
{
'projekt0n/github-nvim-theme',
name = 'github-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({
-- ...
})
vim.cmd('colorscheme github_dark')
end,
}
}
|