nanozuki / tabby.nvim

A declarative, highly configurable, and neovim style tabline plugin. Use your nvim tabs as a workspace multiplexer!
MIT License
563 stars 21 forks source link

In the preset, the color of the tab and the border color are inconsistent #81

Closed MaiLunJiye closed 1 year ago

MaiLunJiye commented 1 year ago

image

enviroment:

Iterm2
NVIM v0.7.2
Build type: Release
LuaJIT 2.1.0-beta3

config:

  use {
      "nanozuki/tabby.nvim",
      config = function()
          require("tabby").setup({
                  tabline = require("tabby.presets").active_wins_at_tail,
              })
      end,
  }
-- theme
  use {
      "sainnhe/sonokai",
      requires = {
          'nvim-treesitter/nvim-treesitter'
      },
      config = function()
          vim.g.sonokai_style = "default"
          vim.g.sonokai_enable_italic = 1
          vim.cmd('colorscheme sonokai')
      end
  }