summaryrefslogtreecommitdiff
path: root/init.lua
blob: 3b988cf98faca51decb4c0bb02942589fa7eb77b (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 bootstrapping script!"
  return
end
vim.opt.runtimepath:prepend(hotpot_path)

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