blob: 3a54c2382f2d9e81fa1302a04390921703becce5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;; Installs plugins with packer.
(module install {autoload {a aniseed.core
plugins plugins
packer packer
bootstrap bootstrap}})
(defn- install-plugins [plgs]
(packer.startup (fn [use]
(each [plugin opts (pairs plgs)]
(use (a.assoc opts 1 plugin))))))
(install-plugins plugins.plugins)
(if (= (vim.env.BOOTSTRAPPED) true)
(packer.sync))
|