mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
27 lines
417 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|