summaryrefslogtreecommitdiff
path: root/fnl/util.fnl
blob: 9d51f74de663c8dabc93148b66339c5fc71aec56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;; Utility functions.
(module util {autoload {a aniseed.core
                        nvim aniseed.nvim
                        packer packer
                        plugins plugins}})

(var num-plugins 0)

(def- path (.. (vim.fn.stdpath :data) :/site/pack/packer/start))

(def- num-installed-plugins (length (vim.fn.readdir path)))

(defn sync [] (if (or (= num-installed-plugins 3)
                      (not= num-installed-plugins num-plugins))
                  (packer.sync)))

(defn install []
      (packer.startup (fn [use]
                        (each [plugin opts (pairs plugins.plugins)]
                          (set num-plugins (+ num-plugins 1))
                          (use (a.assoc opts 1 plugin))))))

(defn load-config [] (if (= num-installed-plugins num-plugins)
                         (require :config)))

(defn load-plugin [name]
      (let [(ok? val-or-err) (pcall require name)]
        (if ok?
            val-or-err
            (vim.notify (.. "Could not load config: " val-or-err)
                        vim.log.levels.WARN))))