nix-community.nixvim/tests/test-sources/plugins/by-name/julia-cell/default.nix
2024-09-09 14:34:18 -05:00

27 lines
417 B
Nix

{
empty = {
plugins.julia-cell.enable = true;
};
example = {
plugins.julia-cell = {
enable = true;
settings = {
delimit_cells_by = "marks";
tag = "##";
};
keymaps = {
silent = true;
executeCell = "a";
executeCellJump = "b";
run = "c";
clear = "d";
prevCell = "e";
nextCell = "f";
};
};
};
}