diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-25 11:43:54 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-25 11:43:54 -0500 |
commit | 0d366eb0734f81e02d024f11294799d39e9ff079 (patch) | |
tree | b74959a44bfdddcfb2b757e44c0bd5395b2bcbd9 /common/.vimfx/userChrome.css | |
parent | 4ad21893fa8ccd4447d78a0a4f9999162d8704cf (diff) | |
download | dotfiles-0d366eb0734f81e02d024f11294799d39e9ff079.tar.gz dotfiles-0d366eb0734f81e02d024f11294799d39e9ff079.zip |
VimFX: Replace Tab Groups add-on with new native tab groups
Diffstat (limited to 'common/.vimfx/userChrome.css')
-rw-r--r-- | common/.vimfx/userChrome.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/.vimfx/userChrome.css b/common/.vimfx/userChrome.css index 3a1f71f..588f9f6 100644 --- a/common/.vimfx/userChrome.css +++ b/common/.vimfx/userChrome.css @@ -62,3 +62,9 @@ findbar { padding-block: 0 !important } findbar, #statuspanel, #TabsToolbar, #nav-bar { font-family: monospace; } + +tabs:has(tab-group) { counter-reset: group-index } +tab-group > vbox > label::before { + counter-increment: group-index; + content: counter(group-index) ": "; +} |