summaryrefslogtreecommitdiff
path: root/fnl/config/lazy.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-01-08 02:49:49 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-01-08 02:49:49 +0100
commit86fc163e549d78136855ac2b45e91ffb2f43affc (patch)
tree20fab78a2ff2635af5ac95f2b2a11d9d07ace0e1 /fnl/config/lazy.fnl
parent0d7f782cb4e68cff000beb00e8ab64308a66f3f0 (diff)
Refactor config loading
Diffstat (limited to 'fnl/config/lazy.fnl')
-rw-r--r--fnl/config/lazy.fnl37
1 files changed, 25 insertions, 12 deletions
diff --git a/fnl/config/lazy.fnl b/fnl/config/lazy.fnl
index 09b0243..faa53c2 100644
--- a/fnl/config/lazy.fnl
+++ b/fnl/config/lazy.fnl
@@ -1,14 +1,27 @@
;; Lazy opts.
-(module config.lazy {autoload {util config.util}})
-(def- opts {:defaults {:lazy true :version "*"}
- :install {:colorscheme [:no-clown-fiesta]}
- :checker {:enabled true}
- :performance {:rtp {:disabled_plugins [:gzip
- :matchit
- :matchparen
- :netrwPlugin
- :tarPlugin
- :tohtml
- :tutor
- :zipPlugin]}}})
+{:install {:colorscheme [:no-clown-fiesta]}
+ :performance {:rtp {:disabled_plugins [:gzip
+ :matchit
+ :matchparen
+ :netrwPlugin
+ :tarPlugin
+ :tohtml
+ :tutor
+ :zipPlugin]}}
+ :ui {:icons {:cmd " "
+ :config " "
+ :event " "
+ :ft " "
+ :init " "
+ :import " "
+ :keys " "
+ :lazy "鈴 "
+ :loaded "● "
+ :not_loaded "○ "
+ :plugin " "
+ :runtime " "
+ :source " "
+ :start " "
+ :task " "
+ :list ["● " " " " " "‒ "]}}}