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