19 lines
434 B
Lua
19 lines
434 B
Lua
|
return {
|
||
|
{
|
||
|
"folke/tokyonight.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
|
||
|
opts = {
|
||
|
transparent = true,
|
||
|
},
|
||
|
config = function()
|
||
|
require("tokyonight").setup({
|
||
|
cache = false,
|
||
|
transparent = true,
|
||
|
})
|
||
|
-- load the colorscheme here
|
||
|
vim.cmd([[colorscheme tokyonight]])
|
||
|
end,
|
||
|
},
|
||
|
}
|