nanozuki / tabby.nvim

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

Error when installing #56

Closed mwoods79 closed 2 years ago

mwoods79 commented 2 years ago

When I run :PackerSync I get the following error. packer.nvim: Error running config for tabby.nvim: vim/shared.lua:0: after the second argument: expected table, got nil

Here is my config.

  use { "nanozuki/tabby.nvim",
    requires = "kyazdani42/nvim-web-devicons",
    after = "nightfox.nvim",
    config = function()
      require("tabby").setup({})
    end
  }
nanozuki commented 2 years ago

I can't reproduce this bug on my device. Can you test with minimal config or share the whole configuration?

mwoods79 commented 2 years ago

Seems like this was a packer issue. I removed all plugins except tabby and it worked. Then I re-installed each plugin, one at a time, to see which one caused the problem. Now I can't reproduce.

Thank you for your time.

P.S. Thank you for this plugin. This plugin is exactly what I was looking for.