blob: 4da9c4a3bf59ad5ad435d35937ec3bc78ba9d670 (
plain)
1
2
3
4
5
6
7
8
|
local setlocal = vim.opt_local
setlocal.number = false
setlocal.relativenumber = false
setlocal.textwidth = 80
-- setlocal.formatoptions:append { "w" }
setlocal.formatoptions = "tcjlw"
setlocal.formatoptions:remove { "o" }
|