nvim-config11/lua/plugins/tokyonight.lua

11 lines
253 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 = true, dim_inactive = true, lualine_bold = true })
vim.cmd("colo tokyonight-night")
end
2025-03-27 08:18:20 +00:00
}