summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/tabby.lua
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-08-02 21:04:09 -0400
committertriethyl <triethylammonium@pm.me>2025-08-02 23:12:59 -0400
commitfb01120809379948eae622b6fa266b4cdb51c3a9 (patch)
tree29256ad70ee6504ce450a0e1cb8790063156192c /pkgs/custom-neovim/config/lua/plugins/tabby.lua
parentb59291b870bc7f54bf4831496665c3202b7bc3cd (diff)
neovim: bunch of stuff
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/tabby.lua')
-rw-r--r--pkgs/custom-neovim/config/lua/plugins/tabby.lua6
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,
}