nvim/lua/plugins/colorscheme.lua

10 lines
161 B
Lua
Raw Normal View History

2024-02-21 04:09:18 +00:00
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
init = function()
vim.cmd([[ colorscheme tokyonight-night ]])
end,
}