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