summaryrefslogtreecommitdiff
path: root/init.lua
blob: 8816adb16e675960723e3d730efa1e8bcb9dd424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local hotpot_path = vim.fn.stdpath "data" .. "/lazy/" .. "hotpot.nvim"
vim.opt.runtimepath:prepend(hotpot_path)

local ok, hotpot = pcall(require, "hotpot")
if not ok then
  vim.notify "You need to run the bootstrap!"
  return
end

hotpot.setup {
  provide_require_fennel = true,
  compiler = {
    modules = {
      correlate = true,
    },
  },
}
require "settings"
require "plugins"