mirror of
https://github.com/Tilo-K/neovim-config.git
synced 2026-07-03 13:43:02 +00:00
11 lines
223 B
Lua
11 lines
223 B
Lua
return {
|
|
'tiagovla/tokyodark.nvim',
|
|
opts = {
|
|
-- custom options here
|
|
},
|
|
config = function(_, opts)
|
|
require('tokyodark').setup(opts) -- calling setup is optional
|
|
vim.cmd [[colorscheme tokyodark]]
|
|
end,
|
|
}
|