From eaf9fd5daa3425543a79c0b989038653d5ee4c5c Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Thu, 9 Jun 2022 20:30:33 -0700 Subject: [PATCH] nvim: add config for tokyonight (TODO: make the tabline highlights work better) --- .config/nvim/lua/blake/plugins.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.config/nvim/lua/blake/plugins.lua b/.config/nvim/lua/blake/plugins.lua index db97e1f..9922730 100644 --- a/.config/nvim/lua/blake/plugins.lua +++ b/.config/nvim/lua/blake/plugins.lua @@ -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',