diff options
| author | Baitinq <[email protected]> | 2025-03-19 00:20:01 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-03-19 00:20:01 +0100 |
| commit | 4f025e3ec93cd8fc39a84fb979922a2bbd4f523e (patch) | |
| tree | 329938a7c1d578da524d9f5aa6145ef4c24b88d0 /dotfiles | |
| parent | Update (diff) | |
| download | nixos-config-4f025e3ec93cd8fc39a84fb979922a2bbd4f523e.tar.gz nixos-config-4f025e3ec93cd8fc39a84fb979922a2bbd4f523e.tar.bz2 nixos-config-4f025e3ec93cd8fc39a84fb979922a2bbd4f523e.zip | |
dotfiles: nvim: add flash plugin
Diffstat (limited to 'dotfiles')
| -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. |