feat: add tokyonight theme

This commit is contained in:
2026-03-12 17:51:06 +01:00
parent 764f7202e8
commit e46df592dc

View File

@@ -0,0 +1,10 @@
return {
'tiagovla/tokyodark.nvim',
opts = {
-- custom options here
},
config = function(_, opts)
require('tokyodark').setup(opts) -- calling setup is optional
vim.cmd [[colorscheme tokyodark]]
end,
}