diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:26:47 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-03 21:26:47 +0200 |
commit | ffc1dfc4fd0d6eb50b5a5ac9b598718a1f1070c4 (patch) | |
tree | 762a77b8d50a32285fb432fb6d1df153bd6372a3 | |
parent | 89388d10d0eae75f488974e868dd3b2c8c67432f (diff) |
fix(init): add fnl init to lua init
-rw-r--r-- | init.lua | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ -- Loads plugins for Neovim. -require "bootstrap" +-- Load fennel config +vim.g["aniseed#env"] = { + module = "init", + compile = true +} + +require "init" |