mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
modules/options: use vim.opt instead of vim.o (#167)
This commit is contained in:
parent
96c77f126f
commit
6e54dc1143
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue