From 6b5508c3a391e70348d4e01f96975b2edea74585 Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 8 Nov 2024 16:28:19 +0100 Subject: [PATCH] feat: add plugin vim-illuminate --- lua/plugins/vim-illuminate.lua | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lua/plugins/vim-illuminate.lua diff --git a/lua/plugins/vim-illuminate.lua b/lua/plugins/vim-illuminate.lua new file mode 100644 index 0000000..4334718 --- /dev/null +++ b/lua/plugins/vim-illuminate.lua @@ -0,0 +1,24 @@ + +-- +-- Mark all occurances of the word under the current cursor +-- +-- Source: https://github.com/RRethy/vim-illuminate +-- .............................................. +-- +-- Author: Sven Vogel +-- Created: 08.11.2024 +-- Edited: 08.11.2024 +-- +-- ============================================== + +return { + { + 'RRethy/vim-illuminate', + opts = { + case_insensitive_regex = false, + }, + config = function(opts) + require('illuminate').configure(opts) + end + } +}