Skip to content

"Too many rounds of missing plugins" error #1910

Answered by jamischarles
jamischarles asked this question in Q&A
Discussion options

You must be logged in to vote

Ok. After reading through the docs carefully again, and looking at the examples again it finally clicked...

I was incorrectly treating colorscheme.lua etc as plugin. Really those are just a spec file that needs to get merged with the other spec files.

After making the adjustments needed, both these approaches worked beautifully:

Option a: plugin.lua file

-- plugins.lua file
return {
  {
    dir = "~/.dotfiles/nvim/lua",
    name = "statusline.lua",
    lazy = false,
    priority = 998,
 --  dependencies = require("statusline").dependencies,
    dependencies = {
      "nvim-tree/nvim-web-devicons", -- (for lualine) 
      "nvim-lualine/lualine.nvim",
  },
  {
    dir = "~/.dotfiles/nvim/lua"

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
7 replies
@folke
Comment options

@jamischarles
Comment options

@jamischarles
Comment options

@folke
Comment options

@jamischarles
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by jamischarles
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