Neovim/lua/plugins/tokyonight.lua

24 lines
526 B
Lua

return {
{
"folke/tokyonight.nvim",
lazy = true,
priority = 1000,
opts = {
style = "night",
transparent = false,
styles = {
sidebars = "dark",
floats = "normal",
},
sidebars = { "qf", "trouble", "neo-tree", "aerial", "help" },
},
},
-- Configure LazyVim to load tokyonight
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight",
},
}
}