feat: add plugin visual whitespace
This commit is contained in:
parent
0c0ce2e80a
commit
d7625104a6
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue