feat(nvim): better text wrapping
This commit is contained in:
@@ -7,7 +7,7 @@ return {
|
|||||||
large_buf = { size = 1024 * 256, lines = 10000 },
|
large_buf = { size = 1024 * 256, lines = 10000 },
|
||||||
autopairs = true,
|
autopairs = true,
|
||||||
cmp = true,
|
cmp = true,
|
||||||
diagnostics = { virtual_text = true, virtual_lines = true },
|
diagnostics = { virtual_text = false, virtual_lines = true },
|
||||||
highlighturl = true,
|
highlighturl = true,
|
||||||
notifications = true,
|
notifications = true,
|
||||||
},
|
},
|
||||||
@@ -39,7 +39,15 @@ return {
|
|||||||
"Hack Nerd Font Mono",
|
"Hack Nerd Font Mono",
|
||||||
":h10",
|
":h10",
|
||||||
},
|
},
|
||||||
listchars = { tab = "> ", extends = ">", precedes = "<", space = "·" },
|
listchars = {
|
||||||
|
tab = "> ",
|
||||||
|
extends = ">",
|
||||||
|
precedes = "<",
|
||||||
|
space = "·",
|
||||||
|
},
|
||||||
|
linebreak = true,
|
||||||
|
breakat = " (),;{}[]",
|
||||||
|
showbreak = "",
|
||||||
number = false,
|
number = false,
|
||||||
path = vim.list_extend(vim.opt.path:get(), { "**" }),
|
path = vim.list_extend(vim.opt.path:get(), { "**" }),
|
||||||
pumblend = 0,
|
pumblend = 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user