feat: add plugin visual whitespace

This commit is contained in:
Sven Vogel 2024-11-20 23:12:55 +01:00
parent 0c0ce2e80a
commit d7625104a6
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
--
-- Reveal whitespace characters in visual mode, similar to VSCode.
--
-- Source: https://github.com/mcauley-penney/visual-whitespace.nvim
-- ..............................................
--
-- Author: Sven Vogel
-- Created: 20.11.2024
-- Edited: 20.11.2024
--
-- ==============================================
return {
{
'mcauley-penney/visual-whitespace.nvim',
config = true,
opts = {
highlight = {
link = "Visual"
},
excluded = {
filetypes = {
"neo-tree"
}
}
}
}
}