mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 05:38:38 +02:00
11 lines
159 B
Lua
11 lines
159 B
Lua
|
return {
|
||
|
"folke/tokyonight.nvim",
|
||
|
lazy = false,
|
||
|
priority = 1000,
|
||
|
opts = {},
|
||
|
config = function()
|
||
|
vim.cmd.colorscheme 'tokyonight-storm'
|
||
|
end,
|
||
|
}
|
||
|
|