summaryrefslogtreecommitdiff
path: root/fnl/plugins/core/lazy.fnl
blob: f7b8371c8ec600d72f42d9df2aec19526fcc21e8 (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
32
33
;; Lazy opts.

(local opts {:install {:colorscheme [:no-clown-fiesta]}
             :performance {:cache {:enabled true}
                           :rtp {:disabled_plugins [:gzip
                                                    :matchit
                                                    :netrwPlugin
                                                    :tarPlugin
                                                    :tohtml
                                                    :tutor
                                                    :zipPlugin]}}
             :ui {:icons {:cmd "  "
                          :config " "
                          :event " "
                          :ft " "
                          :init " "
                          :import " "
                          :keys "  "
                          :lazy "鈴 "
                          :loaded "● "
                          :not_loaded "○ "
                          :plugin "  "
                          :runtime "  "
                          :source "  "
                          :start " "
                          :task "  "
                          :list ["● " " " " " "‒ "]}}})

(fn setup [plugins]
  (let [lazy (require :lazy)]
    (lazy.setup plugins opts)))

{: setup}