blob: f82c8419809217c637efb50dd8bed275cbdb6f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
local hotpot_path = vim.fn.stdpath "data" .. "/lazy/" .. "hotpot.nvim"
if not vim.loop.fs_stat(hotpot_path) then
vim.notify "You need to run the bootstrap!"
return
end
vim.opt.runtimepath:prepend(hotpot_path)
require("hotpot").setup {
provide_require_fennel = true,
compiler = {
modules = {
correlate = true,
},
},
}
require "settings"
require "plugins"
|