modules/options: use vim.opt instead of vim.o

This commit is contained in:
s1341 2023-02-14 14:26:55 +02:00
parent 8d41514bbe
commit 71e2e958b2

View file

@ -35,7 +35,7 @@ in
local nixvim_options = ${helpers.toLuaObject config.options}
for k,v in pairs(nixvim_options) do
vim.o[k] = v
vim.opt[k] = v
end
end
-- }}}