[nvim] Move the textwidth back to 80 characters

I just prefer this, turns out.
This commit is contained in:
Eryn Wells 2025-01-31 13:28:13 -08:00
parent f8c04599c5
commit e015132f15

View file

@ -34,7 +34,9 @@ opt.errorbells = false
-- Wrap text rather than letting it run offscreen
opt.wrap = true
opt.linebreak = true
opt.textwidth = 120
-- Wrap to 80 characters by default
opt.textwidth = 80
-- Mark columns 80, 90, and 120
opt.colorcolumn = {80, 90, 120}
opt.showmatch = true