A Neovim colorscheme plugin ported from VS Code Tokyo Night Dark theme.
Using lazy.nvim:
{
"sudoscrawl/tokyo-dark.nvim",
lazy = false,
priority = 1000,
config = function()
require("tokyo-dark").setup({
transparent = false,
italic_comments = true,
})
vim.cmd([[colorscheme tokyo-dark]])
end,
}| Option | Type | Default | Description |
|---|---|---|---|
transparent |
boolean |
false |
Enable/disable transparent background |
italic_comments |
boolean |
true |
Enable/disable italic comments |
colorscheme tokyo-darkOr in Lua:
vim.cmd("colorscheme tokyo-dark")