feat(nvim): add visual-whitespace.nvim
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 42s

This commit is contained in:
Price Hiller 2024-03-22 10:27:20 -05:00
parent 1f3689d616
commit 31945d82d0
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
4 changed files with 14 additions and 2 deletions

View File

@ -97,7 +97,7 @@ M.setup = function()
-- Set listcharacters
opt.list = true
opt.listchars:append("tab:-->")
opt.listchars:append("tab: ")
opt.listchars:append("trail:·")
opt.listchars:append("extends:◣")
opt.listchars:append("precedes:◢")

View File

@ -332,6 +332,9 @@ return {
{ "@markup.heading.7.marker", { link = "@markup.heading.7" } },
{ "@markup.heading.8.marker", { link = "@markup.heading.8" } },
{ "@markup.quote.org", get_hl("@markup.quote", { bg = colors.sumiInk5 }) },
-- For Visual Whitespace plugin
{ "visual-whitespace", get_hl("Visual", { fg = colors.fujiGray }) },
}
if vim.g.neovide then

View File

@ -3,6 +3,6 @@ return {
"hedyhli/outline.nvim",
cmd = { "Outline" },
keys = { { "<localleader>o", "<cmd>Outline<CR>", desc = "Toggle Outline" } },
config = true
config = true,
},
}

View File

@ -0,0 +1,9 @@
return {
{
"mcauley-penney/visual-whitespace.nvim",
events = "ModeChanged",
opts = {
highlight = { link = "visual-whitespace" },
},
},
}