feat(nvim): better text wrapping
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user