nvim/lua/plugins/tokyonight.lua

12 lines
265 B
Lua
Raw Normal View History

return {
2023-05-17 17:06:16 +01:00
"folke/tokyonight.nvim",
lazy = true,
config = true,
opts = {
2023-06-02 11:54:10 +01:00
style = "night",
transparent = not vim.g.neovide,
terminal_colors = true,
2023-05-23 16:28:47 +01:00
styles = { sidebars = "transparent", floats = "transparent" },
},
}