mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-12-28 05:32:23 +00:00
lazy: update example
This commit is contained in:
parent
a60146064b
commit
3d9e8717e0
1 changed files with 13 additions and 1 deletions
|
@ -138,7 +138,19 @@
|
||||||
type = nullOr (oneOf [str (listOf lznKeysSpec) (listOf str)]);
|
type = nullOr (oneOf [str (listOf lznKeysSpec) (listOf str)]);
|
||||||
example = ''
|
example = ''
|
||||||
keys = [
|
keys = [
|
||||||
{lhs = "<leader>s"; rhs = ":NvimTreeToggle<cr>"; desc = "Toggle NvimTree"}
|
{
|
||||||
|
mode = "n";
|
||||||
|
key = "<leader>s";
|
||||||
|
action = ":DapStepOver<cr>";
|
||||||
|
desc = "DAP Step Over";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
mode = ["n", "x"];
|
||||||
|
key = "<leader>dc";
|
||||||
|
action = "function() require('dap').continue() end";
|
||||||
|
lua = true;
|
||||||
|
desc = "DAP Continue";
|
||||||
|
}
|
||||||
]
|
]
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue