mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/notebook-navigator: init
This commit is contained in:
parent
38abcfe89a
commit
bc5fc9a896
2 changed files with 189 additions and 0 deletions
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
empty = {
|
||||
plugins = {
|
||||
notebook-navigator.enable = true;
|
||||
molten.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins = {
|
||||
molten.enable = true;
|
||||
notebook-navigator = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
cell_markers = { };
|
||||
activate_hydra_keys = null;
|
||||
show_hydra_hint = true;
|
||||
hydra_keys = {
|
||||
comment = "c";
|
||||
run = "X";
|
||||
run_and_move = "x";
|
||||
move_up = "k";
|
||||
move_down = "j";
|
||||
add_cell_before = "a";
|
||||
add_cell_after = "b";
|
||||
split_cell = "s";
|
||||
};
|
||||
repl_provider = "auto";
|
||||
syntax_highlight = false;
|
||||
cell_highlight_group = "Folded";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
# ERROR: [Hydra.nvim] Option "hint.border" has been deprecated and will be removed on 2024-02-01 -- See hint.float_opts
|
||||
test.runNvim = false;
|
||||
|
||||
plugins = {
|
||||
hydra.enable = true;
|
||||
molten.enable = true;
|
||||
notebook-navigator = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
cell_markers.python = "# %%";
|
||||
activate_hydra_keys = "<leader>h";
|
||||
hydra_keys = {
|
||||
comment = "c";
|
||||
run = "X";
|
||||
run_and_move = "x";
|
||||
move_up = "k";
|
||||
move_down = "j";
|
||||
add_cell_before = "a";
|
||||
add_cell_after = "b";
|
||||
split_cell = "s";
|
||||
};
|
||||
repl_provider = "molten";
|
||||
syntax_highlight = true;
|
||||
cell_highlight_group = "Folded";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue