blob: f0cf7c59381b6b2edf33664deca0bd4af4473edb (
plain)
1
2
3
4
5
6
7
8
9
|
local setlocal = vim.opt_local
setlocal.tabstop = 4
setlocal.softtabstop = 4
setlocal.shiftwidth = 4
setlocal.expandtab = true
setlocal.formatoptions = "tcqr"
setlocal.textwidth = 0
-- setlocal.wrap
|