modules/options: use vim.opt instead of vim.o (#167)

This commit is contained in:
s1341 2023-02-14 20:10:53 +02:00 committed by GitHub
parent 96c77f126f
commit 6e54dc1143
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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