-
Notifications
You must be signed in to change notification settings - Fork 82
/
init.fnl
67 lines (63 loc) · 3.09 KB
/
init.fnl
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
;; disable builtin vim plugins and providers, small speedup
(local default-plugins [:2html_plugin
:getscript
:getscriptPlugin
:gzip
:logipat
:netrw
:netrwPlugin
:netrwSettings
:netrwFileHandlers
:matchit
:tar
:tarPlugin
:rrhelper
:spellfile_plugin
:vimball
:vimballPlugin
:zip
:zipPlugin
:tutor
:rplugin
:syntax
:synmenu
:optwin
:compiler
:bugreport
:ftplugin])
(local default-providers [:node :perl :ruby])
(each [_ plugin (pairs default-plugins)] (tset vim.g (.. :loaded_ plugin) 1))
(each [_ provider (ipairs default-providers)]
(tset vim.g (.. :loaded_ provider :_provider) 0))
;; check if hotpot exists
(if (pcall require :hotpot)
(do
;; if it does, load it
((. (require :hotpot) :setup) {;; enables using the fennel compiler as a linter
:enable_hotpot_diagnostics true
;; lets us require :fennel
:provide_require_fennel true
:compiler {;; let us access `vim.*` in macros
:macros {:allowGlobals true
:compilerEnv _G
:env :_COMPILER}
;; injects nyoom macros into every file
;; :preprocessor (fn [src {: path : modname : macro?}]
;; (print path modname (string.match path "config/nvim/"))
;; ;; (vim.notify (.. "compiling " path " in " modname))
;; (if (or (= modname "macros") (= modname "core.lib"))
;; src
;; (string.format "(require-macros :macros)%s" src)))
;; better line errors/compat
:modules {:correlate true
:useBitLib true}}})
;; if NYOOM_PROFILE is set, load profiling code
(when (os.getenv :NYOOM_PROFILE)
((. (require :core.lib.profile) :toggle)))
;; load nyoom standard library
(local stdlib (require :core.lib))
(each [k v (pairs stdlib)] (rawset _G k v))
;; load nyoom
(require :core))
;; else print error
(print "Unable to require hotpot"))