mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-01 19:38:44 +00:00
modules/visuals: migrate plugins to setupOpts
This commit is contained in:
parent
b3f51048db
commit
a6bb6e1b3e
28 changed files with 692 additions and 396 deletions
39
modules/plugins/visuals/cellular-automaton/config.nix
Normal file
39
modules/plugins/visuals/cellular-automaton/config.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.strings) optionalString;
|
||||
inherit (lib.nvim.lua) toLuaObject;
|
||||
inherit (lib.nvim.dag) entryAnywhere entryAfter;
|
||||
inherit (lib.nvim.binds) mkBinding;
|
||||
|
||||
cfg = config.vim.visuals.cellular-automaton;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
vim = {
|
||||
startPlugins = ["cellular-automaton"];
|
||||
|
||||
maps.normal = mkBinding cfg.mappings.makeItRain "<cmd>CellularAutomaton make_it_rain<CR>" "Make it rain";
|
||||
|
||||
pluginRC = {
|
||||
# XXX: This has no error handling. User can set
|
||||
# `animation.setup` to a bogus value, and we would
|
||||
# have an error in our hands. I don't think there
|
||||
# is a good way to check for errors, so I'm leaving
|
||||
# it like this under the assumption that the user
|
||||
# will not mess it up for no reason.
|
||||
cellular-automaton-anim = entryAnywhere (optionalString cfg.animation.register ''
|
||||
-- Coerce user animation config into pluginRC
|
||||
${toLuaObject cfg.animation.setup}
|
||||
'');
|
||||
|
||||
cellular-automaton = entryAfter ["cellular-automaton-anim"] ''
|
||||
-- Register the animation
|
||||
require("cellular-automaton").register_animation(ca_config)
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue