mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-09 19:23:50 +00: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,
|
||
|
}
|
||
|
|