mirror of
https://github.com/tomru/nvim.git
synced 2026-03-03 22:47:18 +01:00
10 lines
150 B
Lua
10 lines
150 B
Lua
return {
|
|
'folke/tokyonight.nvim',
|
|
lazy = false,
|
|
priority = 1000,
|
|
opts = {},
|
|
init = function()
|
|
vim.cmd.colorscheme 'tokyonight'
|
|
end,
|
|
}
|