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

11 lines
193 B
Lua

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