-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathinit.lua
More file actions
23 lines (18 loc) · 1.03 KB
/
Copy pathinit.lua
File metadata and controls
23 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- ---------------------------------------------------------------------------
-- Fennel compiler (hotpot)
-- ---------------------------------------------------------------------------
-- Install and enable hotpot FIRST, so its module loader is active for every
-- subsequent `require` and for auto-sourced runtime files (ftplugin/,
-- after/ftplugin/, lsp/, colors/, ...). Everything else in this config is
-- Fennel: any `*.fnl` is compiled ahead of time (on save) and loaded
-- transparently.
vim.pack.add({ { src = "https://github.com/rktjmp/hotpot.nvim" } })
require("hotpot")
-- ---------------------------------------------------------------------------
-- Load configuration
-- ---------------------------------------------------------------------------
-- mini.nvim is needed before the config loads: config/loader.fnl (required by
-- every with-* macro expansion) builds on MiniMisc.safely().
vim.pack.add({ "https://github.com/nvim-mini/mini.nvim" })
-- The explicit, ordered load list lives in fnl/config/init.fnl.
require("config")