nvim: init: Enable virtualedit

Allow cursor to be positioned even when there is no actual character.
This commit is contained in:
Sanchayan Maity 2020-12-12 11:21:03 +05:30
parent 6e63f234af
commit 98c0c283ee
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ vim.o.fileformat = 'unix'
vim.o.inccommand = 'split'
vim.o.switchbuf = 'useopen'
vim.o.encoding = 'utf-8'
vim.o.virtualedit = 'all'
-- Disable providers we do not give a shit about
vim.g.loaded_python3_provider = 0