mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
add flash
This commit is contained in:
parent
2e17a7558f
commit
81d32ab609
3 changed files with 67 additions and 0 deletions
|
@ -51,5 +51,8 @@
|
||||||
./ui/noice.nix
|
./ui/noice.nix
|
||||||
./ui/nui.nix
|
./ui/nui.nix
|
||||||
./ui/nvim-notify.nix
|
./ui/nvim-notify.nix
|
||||||
|
|
||||||
|
./utils/better-escape.nix
|
||||||
|
./utils/flash.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
7
config/utils/better-escape.nix
Normal file
7
config/utils/better-escape.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
plugins.better-escape = {
|
||||||
|
enable = true;
|
||||||
|
clearEmptyLines = true;
|
||||||
|
timeout = 200;
|
||||||
|
};
|
||||||
|
}
|
57
config/utils/flash.nix
Normal file
57
config/utils/flash.nix
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
{
|
||||||
|
plugins.flash = {
|
||||||
|
enable = false;
|
||||||
|
labels = "asdfghjklqwertyuiopzxcvbnm";
|
||||||
|
search = {
|
||||||
|
mode = "fuzzy";
|
||||||
|
};
|
||||||
|
jump = {
|
||||||
|
autojump = true;
|
||||||
|
};
|
||||||
|
label = {
|
||||||
|
uppercase = false;
|
||||||
|
rainbow = {
|
||||||
|
enabled = false;
|
||||||
|
shade = 5;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# keymaps = [
|
||||||
|
# {
|
||||||
|
# mode = [ "n" "x" "o" ];
|
||||||
|
# key = "s";
|
||||||
|
# action = "<cmd>lua require('flash').jump()<cr>";
|
||||||
|
# options = {
|
||||||
|
# desc = "Flash";
|
||||||
|
# };
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# {
|
||||||
|
# mode = [ "n" "x" "o" ];
|
||||||
|
# key = "S";
|
||||||
|
# action = "<cmd>lua require('flash').treesitter()<cr>";
|
||||||
|
# options = {
|
||||||
|
# desc = "Flash Treesitter";
|
||||||
|
# };
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# {
|
||||||
|
# mode = "o";
|
||||||
|
# key = "r";
|
||||||
|
# action = "<cmd>lua require('flash').remote()<cr>";
|
||||||
|
# options = {
|
||||||
|
# desc = "Remote Flash";
|
||||||
|
# };
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
# {
|
||||||
|
# mode = [ "x" "o" ];
|
||||||
|
# key = "R";
|
||||||
|
# action = "<cmd>lua require('flash').treesitter_search()<cr>";
|
||||||
|
# options = {
|
||||||
|
# desc = "Treesitter Search";
|
||||||
|
# };
|
||||||
|
# }
|
||||||
|
# ];
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue