nvim: init: Use vim.o for setting all options

Works exactly the same as `set` after neovim/neovim#13479.
This commit is contained in:
Sanchayan Maity 2021-05-29 12:45:02 +05:30
parent ac3cb2e828
commit fbce78c346

View file

@ -45,9 +45,9 @@ vim.o.shada = ''
vim.o.diffopt = 'filler,internal,algorithm:histogram,indent-heuristic'
vim.o.scrolloff = 999
vim.o.swapfile = false
vim.bo.swapfile = false
vim.bo.formatoptions = "crqn1j"
vim.wo.relativenumber = true
vim.o.swapfile = false
vim.o.formatoptions = "crqn1j"
vim.o.relativenumber = true
vim.g.python3_host_prog = '/usr/bin/python3'
-- Disable providers we do not give a shit about