mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 16:05:57 +01:00
517a6aa06e
honestly raf was cooking with this one. it's much nicer to use compared to interpolation lol
21 lines
385 B
Nix
21 lines
385 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
|
|
cfg = config.vim.utility.motion.precognition;
|
|
in {
|
|
config =
|
|
mkIf cfg.enable
|
|
{
|
|
vim.startPlugins = [
|
|
"precognition-nvim"
|
|
];
|
|
|
|
vim.luaConfigRC.precognition = lib.nvim.dag.entryAnywhere ''
|
|
require('precognition').setup(${lib.nvim.lua.toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
}
|