10 lines
253 B
Lua
10 lines
253 B
Lua
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
|
|
}
|