plugins/julia-cell: init + test

This commit is contained in:
Gaetan Lepage 2023-06-01 16:14:42 +02:00 committed by Gaétan Lepage
parent 5b225c1b70
commit e638f71f9e
3 changed files with 140 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{
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";
};
};
};
}