nvim.d/neovim/lua/plugins/config/tokyonight.lua

12 lines
193 B
Lua
Raw Normal View History

local ok, tokyonight = pcall(require, "tokyonight")
if not ok then
return
end
tokyonight.setup {
style = "night",
sidebars = {"packer", "terminal"},
dim_inactive = true,
}