mirror of
https://github.com/Manoj-HV30/i3wm-ubuntu-dotfiles.git
synced 2026-05-16 19:35:23 +00:00
19 lines
335 B
Lua
19 lines
335 B
Lua
return {
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
priority = 1000,
|
|
opts = {
|
|
transparent = true,
|
|
styles = {
|
|
sidebars = "transparent",
|
|
floats = "transparent",
|
|
},
|
|
},
|
|
config = function(_, opts)
|
|
require("tokyonight").setup(opts)
|
|
vim.cmd("colorscheme tokyonight-night")
|
|
end,
|
|
},
|
|
}
|
|
|