Issue with _plug Folder Being Removed After Running plug update in SilverBullet 2.1.6 (Docker)

Thank you so much for the clear explanation! That really helped me understand what was going on.

To follow up, here’s what I had originally in my CONFIG:

config.set {
  plugs = {
    "github:joekrill/silverbullet-treeview/treeview.plug.js"
  },
  treeview = {
    position = "lhs",
    size = 0.5,
    dragAndDrop = {
      enabled = true,
      confirmOnRename = true
    }
  }
}

As you pointed out, the problem was with how I was declaring the config. After changing it to:

config.set("plugs", {
    "github:joekrill/silverbullet-treeview/treeview.plug.js"
  })
config.set("treeview", {
    position = "lhs",
    size=1.0,
    dragAndDrop = {
      enabled = true,
      confirmOnRename = true
    }
  }
)

everything started working perfectly.

I really appreciate your guidance, and I’m glad to have learned the proper way to configure this. Thank you again for your support and for all the work you put into SilverBullet!