summaryrefslogtreecommitdiff
path: root/lua/config/packer.lua
blob: 10d17da5afb4b449b1af25d4d05603fe461ee168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local status_ok, packer = pcall(require, "packer")
if not status_ok then
  return
end

-- Have packer use a popup window
packer.init {
  display = {
    open_fn = function()
      return require("packer.util").float { border = "rounded" }
    end,
  },
}

return packer