nvim-config/lua/plugins/themes.lua
2024-06-08 14:48:51 +08:00

16 lines
372 B
Lua

return {
{
'projekt0n/github-nvim-theme',
},
{
"Mofiqul/vscode.nvim",
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('vscode').setup({
})
vim.cmd('colorscheme vscode')
end,
}
}