diff options
| -rw-r--r-- | dotfiles/nvim/init.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dotfiles/nvim/init.lua b/dotfiles/nvim/init.lua index 78292a9..cfb7d51 100644 --- a/dotfiles/nvim/init.lua +++ b/dotfiles/nvim/init.lua @@ -958,6 +958,14 @@ require('lazy').setup({ end, }, + { + "folke/flash.nvim", + event = "VeryLazy", + keys = { + { "s", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" }, + }, + } + -- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the -- init.lua. If you want these files, they are in the repository, so you can just download them and -- put them in the right spots if you want. |