blob: ffe5fce0737259ea11c2cf478c9005896b33d679 (
plain)
1
2
3
4
5
6
7
8
|
local setlocal = vim.opt_local
setlocal.expandtab = true
setlocal.tabstop = 4
setlocal.softtabstop = 4
setlocal.shiftwidth = 4
setlocal.textwidth = 78
setlocal.formatoptions:remove { "o" }
|