nix-community.nixvim/tests/test-sources/plugins/languages/julia/julia-cell.nix
2023-06-04 12:19:25 +02:00

25 lines
383 B
Nix

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