nvim: Disable flash.nvim in search mode
Hopefully definitively disabled the search mode for the flash.nvim plugin. Previously only disabled the key mapping but it would still run every now and again.
This commit is contained in:
parent
670057d543
commit
8f679d0b1a
1 changed files with 7 additions and 1 deletions
|
@ -47,7 +47,13 @@ return {
|
|||
{
|
||||
"folke/flash.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {},
|
||||
opts = {
|
||||
modes = {
|
||||
search = {
|
||||
enabled = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"s",
|
||||
|
|
Loading…
Reference in a new issue