diff options
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/tabby.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/tabby.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/tabby.lua b/pkgs/custom-neovim/config/lua/plugins/tabby.lua index c4533c7..c00dad7 100644 --- a/pkgs/custom-neovim/config/lua/plugins/tabby.lua +++ b/pkgs/custom-neovim/config/lua/plugins/tabby.lua @@ -1,6 +1,6 @@ local general_theme = Utils.generate_theme_from_highlight_groups() local colors = { - current = { fg = general_theme.modes.insert, bg = general_theme.background, style = 'bold'}, + current = { fg = general_theme.modes.normal, bg = general_theme.background, style = 'bold'}, not_current = { fg = general_theme.text.light, bg = general_theme.background }; fill = { bg = general_theme.background }; }; @@ -24,7 +24,7 @@ require('tabby').setup({ return { line.sep('', hl, theme.fill), -- tab.is_current() and '' or '', - tab.number(), + -- tab.number(), tab.name(), line.sep('', hl, theme.fill), hl = hl, @@ -44,7 +44,7 @@ require('tabby').setup({ end), { line.sep('', theme.tail, theme.fill), - { ' ', hl = theme.tail }, + -- { ' ', hl = theme.tail }, }, hl = theme.fill, } |
