Neovim/lua/plugins/tokyonight.lua

24 lines
516 B
Lua
Raw Normal View History

2023-11-17 11:24:21 +00:00
return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
style = "night",
2023-11-27 22:37:34 +00:00
transparent = false,
2023-11-17 11:24:21 +00:00
styles = {
2023-11-27 22:37:34 +00:00
sidebars = "dark",
floats = "normal",
2023-11-17 11:24:21 +00:00
},
sidebars = { "qf", "help", "neo-tree", "aerial" },
2023-11-17 11:24:21 +00:00
},
},
-- Configure LazyVim to load tokyonight
2023-11-17 11:24:21 +00:00
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight",
},
}
}