LunarVim/starter.lvim

Use of deprecated keywords in lvim.plugins

vini-fda opened this issue · 0 comments

As explained in the migration guide for lazy.nvim, the keywords tag and requires should no longer be used in the plugin section, as they have been replaced by version and dependencies, respectively. As such, the plugin listing for the rust-ide template should have these keywords changed:

lvim.plugins = {
  "simrat39/rust-tools.nvim",
  {
    "saecki/crates.nvim",
    tag = "v0.3.0", -- should be 'version'
    requires = { "nvim-lua/plenary.nvim" }, -- should be 'dependencies'
    config = function()
      require("crates").setup {
        null_ls = {
          enabled = true,
          name = "crates.nvim",
        },
        popup = {
          border = "rounded",
        },
      }
    end,
  },
  {
    "j-hui/fidget.nvim",
    config = function()
      require("fidget").setup()
    end,
  },