nvim: experimental wrap settings
crispy-caesus crispy@crispy-caesus.eu
Tue, 10 Mar 2026 22:31:31 +0100
1 files changed,
4 insertions(+),
1 deletions(-)
M
nvim/.config/nvim/lua/crispy/set.lua
→
nvim/.config/nvim/lua/crispy/set.lua
@@ -7,7 +7,7 @@ vim.opt.expandtab = true
vim.opt.smartindent = true -vim.opt.wrap = false +vim.opt.wrap = true vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" vim.opt.undofile = true@@ -22,7 +22,10 @@ vim.opt.signcolumn = "yes"
vim.opt.updatetime = 50 +vim.opt.tw = 80 vim.opt.colorcolumn = "80" +vim.opt.formatoptions = aw2tq + vim.filetype.add({ pattern = { [".*/hypr/.*%.conf"] = "hyprlang" },