nvim.d/nvim/lua/plugins/config/tokyonight.lua
Dan Anglin 0f18fb7cc5
fix: rename the config directory to nvim
Renamed the configuration directory to nvim so that, when extracted, the
correct directory is created.

Fixes linux-home/nvim.d#2
2023-01-16 19:13:25 +00:00

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,
}