e923c165cac66d73e6d6743b58d2b2b4d9e3e0bc
Fix: possible fix for highlights overriding #3
About
A clean dark theme written in lua for neovim 0.5.
Features
- Support for numerous plugins
- Customizable
- Italic Support
Installation
Install with your favorite package manager:
use 'tiagovla/tokyodark.nvim'
Plug 'tiagovla/tokyodark.nvim'
Available configuration
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 inComment.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).
Default configuration
-- 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
Inspiration
Description
Languages
Lua
99.1%
Scheme
0.9%
