Kyotonight.vim
Vim / NeoVim theme that is a marriage of Tokyo Night and Nord Theme. And they went on honeymoon to Kyoto I guess. Dark, elegant, and easy on the eyes.
Install / Use
/learn @shrikecode/Kyotonight.vimREADME
Kyoto Night NeoVim / Vim theme
<!--toc:start--> <!--toc:end-->A dark, elegant, and easy on the eyes Neovim / Vim theme, based on Tokyo Night color palette, with support for bunch of plugins.
Screenshots






Plugins visible in screenshots
- nvim-lualine/lualine.nvim
- glepnir/dashboard-nvim
- romgrk/barbar.nvim
- nvim-tree/nvim-tree.lua
- itchyny/lightline.vim (last screenshot)
- vim-airline/vim-airline (screenshots 4 and 5)
- mhinz/vim-startify (screenshot 4)
Why another Tokyo Night VIM theme...
I'm aware that there already is a Tokyo Night NeoVim theme, but I find it a little too flashy. So, I decided to make my own, that would be closer to Enki's SublimeText Theme, and easier for the eyes. Added bonus is that this theme works in NeoVim as well as in regular Vim.
About
Colorscheme inspired by Enki Theme variant Tokyo Night, made using Tokyo Night color pallette. The theme's code is based on Nord Theme (because I suck at Lua and VimScript + Nord's tame color combinations is what I needed, at least initally).
Installation
Vim-plug
Plug 'shrikecode/kyotonight.vim'
Packer
use 'shrikecode/kyotonight.vim'
Configuration
All supported config options are basically ported from Nord Theme, below
is list of them with default values. Make sure these are configured
before calling colorscheme kyotonight.
General config
-
VimScript
let g:kyotonight_bold = 1 let g:kyotonight_underline = 1 let g:kyotonight_italic = 0 let g:kyotonight_italic_comments = 0 let g:kyotonight_uniform_status_lines = 0 let g:kyotonight_cursor_line_number_background = 0 let g:kyotonight_uniform_diff_background = 0 let g:kyotonight_lualine_bold = 1 colorscheme kyotonight -
Lua
local g = vim.g g.kyotonight_bold = 1 g.kyotonight_underline = 1 g.kyotonight_italic = 0 g.kyotonight_italic_comments = 0 g.kyotonight_uniform_status_lines = 0 g.kyotonight_bold_vertical_split_line = 0 g.kyotonight_cursor_line_number_background = 0 g.kyotonight_uniform_diff_background = 0 g.kyotonight_lualine_bold = 1 vim.cmd[[colorscheme kyotonight]]
Lualine
-
Lua
require('lualine').setup { options = { theme = 'kyotonight' } }
Lightline
Normally Lightline theme should be applied automatically if it isn't set in your configuration already.
-
VimScript
let g:lightline = {'colorscheme': 'kyotonight'} -
Lua
vim.g.lightline = {colorscheme = 'kyotonight'}
Airline
As with Lightline, the theme should be applied together with colorscheme. You might set it manually as well.
-
VimScript
let g:airline_theme='kyotonight' -
Lua
vim.g.airline_theme='kyotonight'
Overrriding colors
All of the theme colors can be overriden by setting correct variable.
-
Examples
-
VimScript
let g:kyotonight#red = ['#fff000', '1'] " hex color, then terminal color number -
Lua
vim.g['kyotonight#red'] = {'#fff000', '1'} -- hex color, then terminal color number
-
-
List of color variables
-
VimScript
g:kyotonight#none g:kyotonight#cl g:kyotonight#hl g:kyotonight#black0 g:kyotonight#bg g:kyotonight#black1 g:kyotonight#grey0 g:kyotonight#grey1 g:kyotonight#fg g:kyotonight#cream g:kyotonight#cyan1 g:kyotonight#teal g:kyotonight#blue1 g:kyotonight#blue0 g:kyotonight#cyan0 g:kyotonight#red g:kyotonight#orange g:kyotonight#yellow g:kyotonight#green g:kyotonight#magenta -
Lua
vim.g['kyotonight#none'] vim.g['kyotonight#cl'] vim.g['kyotonight#hl'] vim.g['kyotonight#black0'] vim.g['kyotonight#bg'] vim.g['kyotonight#black1'] vim.g['kyotonight#grey0'] vim.g['kyotonight#grey1'] vim.g['kyotonight#fg'] vim.g['kyotonight#cream'] vim.g['kyotonight#cyan1'] vim.g['kyotonight#teal'] vim.g['kyotonight#blue1'] vim.g['kyotonight#blue0'] vim.g['kyotonight#cyan0'] vim.g['kyotonight#red'] vim.g['kyotonight#orange'] vim.g['kyotonight#yellow'] vim.g['kyotonight#green'] vim.g['kyotonight#magenta']
-
Supported plugins
- [x] luukvbaal/nnn.nvim
- [x] nvim-lualine/lualine.nvim
- [x] itchyny/lightline.vim
- [x] vim-airline/vim-airline
- [x] glepnir/dashboard-nvim
- [x] romgrk/barbar.nvim
- [x] nvim-tree/nvim-tree.lua
- [x] w0rp/ale
- [x] neoclide/coc.nvim
- [x] nvim-treesitter/nvim-treesitter
- [x] neovim/nvim-lspconfig
- [x] lewis6991/gitsigns.nvim
- [x] airblade/vim-gitgutter
- [x] mhinz/vim-signify
- [x] justinmk/vim-sneak
- [x] tpope/vim-fugitive
- [x] davidhalter/jedi-vim
- [x] scrooloose/nerdtree
- [x] ctrlpvim/ctrlp.vim
- [x] liuchengxu/vim-clap
- [x] nathanaelkane/vim-indent-guides
- [x] junegunn/vim-plug
- [x] kshenoy/vim-signature
- [x] mhinz/vim-startify
- [x] vimwiki/vimwiki
- [x] neovimhaskell/haskell-vim
- [x] pangloss/vim-javascript
- [x] vim-pandoc/vim-pandoc-syntax
- [x] HerringtonDarkholme/yats.vim
- [x] plasticboy/vim-markdown
- [x] StanAngeloff/php.vim
- [x] stephpy/vim-yaml
Extras
- Doom Emacs Theme
- base16 scheme
- Kitty theme
- For Alacritty or other look into tokyonight.nvim extras
- GTK Theme to go with this colorscheme (or Folke's)
- i3 and i3bar theme
- rofi theme
- dunst theme
- Kvantum theme
- i3lock theme
- Contour terminal theme
- tym terminal
- tmux status line theme
- Xfce4 panel theme
- Xfce4 terminal theme
- Theme also supports lightline, airline and lualine
Ackowledgements
- Enki for wonderful Tokyo Nigh
