nvim: update line width options

This commit is contained in:
thomasabishop 2024-02-02 16:08:25 +00:00
parent 747d94c1c7
commit 90e57fc802

View file

@ -10,7 +10,8 @@ opt.incsearch = true
opt.tabstop = 2 opt.tabstop = 2
opt.softtabstop = 4 opt.softtabstop = 4
opt.shiftwidth = 4 opt.shiftwidth = 4
opt.textwidth = 100 opt.colorcolumn = "80"
opt.textwidth = 80
-- opt.clipboard = "unnamedplus" -- opt.clipboard = "unnamedplus"
opt.clipboard:append("unnamedplus") opt.clipboard:append("unnamedplus")
opt.cursorline = true opt.cursorline = true
@ -23,4 +24,5 @@ opt.swapfile = false
opt.showmode = false opt.showmode = false
opt.termguicolors = true opt.termguicolors = true
opt.wrap = false opt.wrap = false
opt.formatoptions = "cro"
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"