kndndrj / nvim-dbee

Interactive database client for neovim
GNU General Public License v3.0
606 stars 39 forks source link

Doesn't work with packer and LunarVim #81

Closed unkindypie closed 2 months ago

unkindypie commented 5 months ago

Tried to install nvim-dbee to my LunarVim via packer by adding this configuration to my configs:

  {
    "kndndrj/nvim-dbee",
    requires = {
      "MunifTanjim/nui.nvim",
    },
    run = function()
      -- Install tries to automatically detect the install method.
      -- if it fails, try calling it with one of these parameters:
      --    "curl", "wget", "bitsadmin", "go"
      require("dbee").install()
    end,
    config = function()
      require("dbee").setup( --[[optional config]])
    end
  },

but got this error when installing the package: image And this error when starting LunarVim (which is weird as I don't use lazy, I use packer): image

My versions: NVIM v0.9.5 LunarVim 1.3

slarse commented 5 months ago

I encountered the same problem, there's already a PR that fixes it. See #78.

kndndrj commented 2 months ago

Fixed with #98