nix-community.nixvim/tests/test-sources/plugins/languages/julia/julia-cell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
417 B
Nix
Raw Normal View History

2023-06-01 16:14:42 +02:00
{
empty = {
plugins.julia-cell.enable = true;
};
example = {
plugins.julia-cell = {
enable = true;
settings = {
delimit_cells_by = "marks";
tag = "##";
};
2023-06-01 16:14:42 +02:00
keymaps = {
silent = true;
executeCell = "a";
executeCellJump = "b";
run = "c";
clear = "d";
prevCell = "e";
nextCell = "f";
};
};
};
}