• Stars
    star
    474
  • Rank 92,163 (Top 2 %)
  • Language
    Lua
  • Created over 3 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A clean dark theme written in lua for neovim.

tokyodark.nvim

image

About

A clean dark theme written in lua for neovim 0.7.

Features

  • Support for numerous plugins
  • Customizable
  • Italic Support

Installation

Install with your favorite package manager:

packer

use 'tiagovla/tokyodark.nvim'

vim-plug

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 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).

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