nvim/lua/plugins/colorscheme.lua

9 lines
161 B
Lua

return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
init = function()
vim.cmd([[ colorscheme tokyonight-night ]])
end,
}