Add vim-cool

Automatically disable `hlsearch` once a search is complete.

https://github.com/romainl/vim-cool
This commit is contained in:
Oliver Davies 2025-06-21 12:34:48 +01:00
parent 6683761177
commit 09d8f6fbcf
2 changed files with 6 additions and 0 deletions

View file

@ -27,6 +27,7 @@
./plugins/telescope.nix
./plugins/treesitter.nix
./plugins/undotree.nix
./plugins/vim-cool.nix
./plugins/vim-dadbod.nix
./plugins/vim-highlightedyank.nix
./plugins/vim-test.nix

View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
extraPlugins = with pkgs.vimPlugins; [ vim-cool ];
}