local utils = {} local scopes = { o = vim.o, b = vim.bo, w = vim.wo } function utils.opt(scope, key, value) scopes[scope][key] = value if scope ~= 'o' then scopes['o'][key] = value end end return utils