nvim-config11/lua/plugins/tokyonight.lua

14 lines
273 B
Lua
Raw Normal View History

2025-03-27 08:18:20 +00:00
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
init = function()
require("tokyonight").setup({
transparent = false,
dim_inactive = true,
})
vim.cmd.colorscheme "tokyonight-night"
end,
2025-03-27 08:18:20 +00:00
}