nvim: init: Use vim.o for setting all options
Works exactly the same as `set` after neovim/neovim#13479.
This commit is contained in:
parent
ac3cb2e828
commit
fbce78c346
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue