nvim: fix tabline highlights
This commit is contained in:
parent
24463705ee
commit
49b2be2fca
2 changed files with 6 additions and 9 deletions
|
@ -4,7 +4,6 @@
|
||||||
require('blake.plugins')
|
require('blake.plugins')
|
||||||
-- basic settings: ~/.config/nvim/lua/blake/settings.lua
|
-- basic settings: ~/.config/nvim/lua/blake/settings.lua
|
||||||
require('blake.settings')
|
require('blake.settings')
|
||||||
vim.cmd 'colorscheme tokyonight'
|
|
||||||
|
|
||||||
-- TODO:
|
-- TODO:
|
||||||
-- Make plugins more modular
|
-- Make plugins more modular
|
||||||
|
|
|
@ -53,10 +53,12 @@ return require('packer').startup({function()
|
||||||
config = function()
|
config = function()
|
||||||
-- vim.g.onedark_transparent_background = true
|
-- vim.g.onedark_transparent_background = true
|
||||||
vim.cmd [[
|
vim.cmd [[
|
||||||
"au ColorScheme tokyonight hi TabLine gui=none guibg='#24283B' guifg='#5C6370' " all tabs color
|
au ColorScheme tokyonight hi TabLine gui=none guibg='#1D202F' guifg='#565F89' " all tabs color
|
||||||
au ColorScheme tokyonight hi TabLineSel guibg='#24283B' guifg='#C0CAF5' " Highlighted tab 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)
|
au ColorScheme tokyonight hi TabLineFill guibg='#1D202F' " tabline portion without tabs (right-hand side)
|
||||||
]]
|
]]
|
||||||
|
-- Has to be put here so it runs synchronously
|
||||||
|
vim.cmd 'colorscheme tokyonight'
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
use { -- newspring: Good light theme for writing
|
use { -- newspring: Good light theme for writing
|
||||||
|
@ -70,14 +72,10 @@ return require('packer').startup({function()
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
use { -- nvim-tabline
|
use { -- nvim-tabline
|
||||||
'seblj/nvim-tabline',
|
'alvarosevilla95/luatab.nvim',
|
||||||
requires = 'kyazdani42/nvim-web-devicons',
|
requires = 'kyazdani42/nvim-web-devicons',
|
||||||
config = function()
|
config = function()
|
||||||
require('tabline').setup {
|
require('luatab').setup()
|
||||||
-- Disable icons (and clickable buttons)
|
|
||||||
modified_icon = '',
|
|
||||||
close_icon = '',
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
use { -- css color tag highlighter (ex: #FFB13B)
|
use { -- css color tag highlighter (ex: #FFB13B)
|
||||||
|
|
Loading…
Add table
Reference in a new issue