nvim: init: Enable cursorline

A new cursorline option 'number' seems to be available now. This would
be useful compared to the whole line.
This commit is contained in:
Sanchayan Maity 2021-10-10 11:29:21 +05:30
parent 25059ef623
commit ac8273d9fd
1 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,8 @@ vim.o.scrolloff = 999
vim.o.formatoptions = "crqn1j"
vim.o.relativenumber = true
vim.o.signcolumn = "yes"
vim.o.cursorline = true
vim.o.cursorlineopt = "number"
vim.g.python3_host_prog = '/usr/bin/python3'
-- Disable providers we do not give a shit about