mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 19:12:13 +02:00
17 lines
285 B
Lua
17 lines
285 B
Lua
return {
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
init = function()
|
|
vim.cmd.colorscheme("tokyonight")
|
|
end,
|
|
opts = {
|
|
style = "storm",
|
|
transparent = true,
|
|
light_style = "day",
|
|
terminal_colors = true,
|
|
},
|
|
},
|
|
}
|