feat(nvim): better text wrapping

This commit is contained in:
2025-05-13 00:13:05 +02:00
parent ea9f5df6c2
commit ecfdbdcd77

View File

@@ -7,7 +7,7 @@ return {
large_buf = { size = 1024 * 256, lines = 10000 },
autopairs = true,
cmp = true,
diagnostics = { virtual_text = true, virtual_lines = true },
diagnostics = { virtual_text = false, virtual_lines = true },
highlighturl = true,
notifications = true,
},
@@ -39,7 +39,15 @@ return {
"Hack Nerd Font Mono",
":h10",
},
listchars = { tab = "> ", extends = ">", precedes = "<", space = "·" },
listchars = {
tab = "> ",
extends = ">",
precedes = "<",
space = "·",
},
linebreak = true,
breakat = " (),;{}[]",
showbreak = "",
number = false,
path = vim.list_extend(vim.opt.path:get(), { "**" }),
pumblend = 0,