Neovim/lua/plugins/tokyonight.lua

24 lines
526 B
Lua
Raw Normal View History

2023-11-17 11:24:21 +00:00
return {
{
"folke/tokyonight.nvim",
2024-01-02 22:44:49 +00:00
lazy = true,
2023-11-17 11:24:21 +00:00
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
},
2024-01-02 22:44:49 +00:00
sidebars = { "qf", "trouble", "neo-tree", "aerial", "help" },
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",
},
}
}