nvim: add config for tokyonight (TODO: make the tabline highlights work better)

This commit is contained in:
PowerUser64 2022-06-09 20:30:33 -07:00
parent e74757cb90
commit eaf9fd5daa

View file

@ -50,6 +50,14 @@ return require('packer').startup({function()
}
use { -- tokyonight theme
'folke/tokyonight.nvim',
config = function()
-- vim.g.onedark_transparent_background = true
vim.cmd [[
"au ColorScheme tokyonight hi TabLine gui=none guibg='#24283B' guifg='#5C6370' " all tabs color
au ColorScheme tokyonight hi TabLineSel guibg='#24283B' guifg='#C0CAF5' " Highlighted tab color
"au ColorScheme tokyonight hi TabLineFill guibg='#24283B' " tabline portion without tabs (right-hand side)
]]
end,
}
use { -- newspring: Good light theme for writing
'NLKNguyen/papercolor-theme',