mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-04-06 02:49:33 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ic9ce8702bca16c6a2f10bd35c9b194a36a6a6964
20 lines
388 B
Nix
20 lines
388 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.ui.modes-nvim;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
startPlugins = ["modes-nvim"];
|
|
pluginRC.modes-nvim = entryAnywhere ''
|
|
require('modes').setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
};
|
|
}
|