17 lines
287 B
Lua
17 lines
287 B
Lua
return {
|
|
-- Configure le style de tokyonight
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
opts = {
|
|
style = "night", -- "night" (dark), "storm", "moon", "day"
|
|
},
|
|
},
|
|
|
|
-- Dit à LazyVim d'utiliser ce colorscheme
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "tokyonight-night",
|
|
},
|
|
},
|
|
}
|