nvim: add config for tokyonight (TODO: make the tabline highlights work better)
This commit is contained in:
parent
e74757cb90
commit
eaf9fd5daa
1 changed files with 8 additions and 0 deletions
|
@ -50,6 +50,14 @@ return require('packer').startup({function()
|
||||||
}
|
}
|
||||||
use { -- tokyonight theme
|
use { -- tokyonight theme
|
||||||
'folke/tokyonight.nvim',
|
'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
|
use { -- newspring: Good light theme for writing
|
||||||
'NLKNguyen/papercolor-theme',
|
'NLKNguyen/papercolor-theme',
|
||||||
|
|
Loading…
Add table
Reference in a new issue