A clean dark theme written in lua for neovim 0.7.
Install with your favorite package manager:
use 'tiagovla/tokyodark.nvim'
Plug 'tiagovla/tokyodark.nvim'
Note: The configuration options should be placed before
colorscheme tokyodark
.
tokyodark_transparent_background
: Set to enable transparent
background.tokyodark_enable_italic_comment
: Set to enable italic in Comment
.tokyodark_enable_italic
: Set to italicize keywords. This option is
designed to use with fonts that support italic styles, for example
Fira Code, MonoLisa, Dank Mono.tokyodark_color_gamma
: Change to adjust the brightness of the theme.
(Darker < 1.0 < Lighter).-- init.lua
vim.g.tokyodark_transparent_background = false
vim.g.tokyodark_enable_italic_comment = true
vim.g.tokyodark_enable_italic = true
vim.g.tokyodark_color_gamma = "1.0"
vim.cmd("colorscheme tokyodark")
" .vimrc
let g:tokyodark_transparent_background = 0
let g:tokyodark_enable_italic_comment = 1
let g:tokyodark_enable_italic = 1
let g:tokyodark_color_gamma = "1.0"
colorscheme tokyodark