Skip to content

The 'tab' is not convenient #18

Answered by adoyle-h
x2c3z4 asked this question in Q&A
Jul 1, 2023 · 1 comments · 3 replies
Discussion options

You must be logged in to vote

Current one.nvim use tabby.nvim as tabline. Current config is my favorite.

The tabby.nvim is highly configurable. You can override the config as you like. For example, below config comes from tabby.nvim document.

require('one').setup {
  plugins = {

		{
			'nanozuki/tabby.nvim',

			config = function()
				vim.o.showtabline = 2

				-- see https://github.com/nanozuki/tabby.nvim#setup
				local theme = {
					fill = 'TabLineFill',
					-- Also you can do this: fill = { fg='#f2e9de', bg='#907aa9', style='italic' }
					head = 'TabLine',
					current_tab = 'TabLineSel',
					tab = 'TabLine',
					win = 'TabLine',
					tail = 'TabLine',
				}

				require('tabby.tabline').set(function(line)
…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@x2c3z4
Comment options

@adoyle-h
Comment options

@x2c3z4
Comment options

Answer selected by x2c3z4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #17 on July 01, 2023 10:46.