nvim-config/lua/plugins/themes.lua

16 lines
372 B
Lua
Raw Normal View History

2024-06-08 06:48:51 +00:00
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,
}
}