Olical / aniseed

Neovim configuration and plugins in Fennel (Lisp compiled to Lua)
https://discord.gg/wXAMr8F
The Unlicense
606 stars 28 forks source link

Can we store generated lua files in a cache folder? #134

Closed randomizedthinking closed 1 year ago

randomizedthinking commented 1 year ago

This is a request, rather than an issue.

All the generated lua files are now in the configuration folder. Is it possible to store such files in a cache folder, such as ~/.local/share/nvim/cache/lua -- this way, all fnl files look like a first-class citizen for the nvim configuration?

bangedorrunt commented 1 year ago

@randomizedthinking you can try https://github.com/Olical/aniseed/blob/a7445c340fb7a0529f3c413eb99d3f8d29f50ba2/doc/aniseed.txt#L208

Olical commented 1 year ago

Was going to be my recommendation too :) I'm almost certain that I provided enough options to compile the Lua into any directory. Might take a bit of doc reading and option fiddling, but should be possible!

On Mon, 23 Jan 2023 at 10:21, bangedorrunt ヽ(ヅ)ノ @.***> wrote:

@randomizedthinking https://github.com/randomizedthinking you can try https://github.com/Olical/aniseed/blob/a7445c340fb7a0529f3c413eb99d3f8d29f50ba2/doc/aniseed.txt#L208

— Reply to this email directly, view it on GitHub https://github.com/Olical/aniseed/issues/134#issuecomment-1400109524, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACM6XJXT5WJFKR4F6F6CSLWTZLRVANCNFSM6AAAAAAUDRI2VE . You are receiving this because you are subscribed to this thread.Message ID: @.***>

randomizedthinking commented 1 year ago

Thanks, @bangedorrunt and @Olical. I will check the option out.