diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-01-04 12:03:41 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-01-04 12:03:41 +0100 |
commit | 158e488e9cbfb166c89321dda4f0fc962f0ab205 (patch) | |
tree | 639026ae27d095a4a47f4f467991c110f4a7541b | |
parent | 165c6fad788ff6f8b4101fc7c9d0b2bc798fa554 (diff) |
Fix aniseed plugin path
-rw-r--r-- | fnl/init.fnl | 2 | ||||
-rw-r--r-- | init.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fnl/init.fnl b/fnl/init.fnl index 0d827f5..8296dcc 100644 --- a/fnl/init.fnl +++ b/fnl/init.fnl @@ -1,4 +1,4 @@ -;; Load plugins with packer. +;; Load plugins with lazy. (module init {require [settings config.autocmd config.cmd]}) (let [lazy (require :lazy) @@ -1,5 +1,5 @@ -local aniseed_path = vim.fn.stdpath "data" .. "/aniseed/aniseed.nvim" local lazy_path = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" +local aniseed_path = vim.fn.stdpath "data" .. "/lazy/aniseed" local function ensure(user, plugin, path) if not vim.loop.fs_stat(path) then |