mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
24 lines
366 B
Nix
24 lines
366 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.tidal;
|
|
in {
|
|
config = mkIf (cfg.enable) {
|
|
vim.startPlugins = [
|
|
# From tidalcycles flake
|
|
pkgs.vimPlugins.vim-tidal
|
|
];
|
|
|
|
vim.globals = {
|
|
"tidal_target" = "terminal";
|
|
"tidal_flash_duration" = 150;
|
|
"tidal_sc_enable" = cfg.openSC;
|
|
};
|
|
};
|
|
}
|