blob: 60857c886ec476d2a1012066de380b26b8dac6eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
local M = {}
function M.setTabWidth(tw, localp)
local opt = localp and vim.opt_local or vim.opt
opt.tabstop = tw
opt.softtabstop = tw
opt.shiftwidth = tw
end
return M
|