relativenumber

master
Fabrice Mouhartem 2023-05-14 21:24:18 +02:00
parent d5610e3ca5
commit ea7194bd08
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,6 @@
--------------
-- init.lua --
--------------
-- Default config
vim.o.fileencoding = 'utf8'
vim.o.encoding = 'utf-8'
@ -9,7 +8,8 @@ vim.o.ff = 'unix'
vim.o.backspace = 'indent,eol,start'
-- Options
local set_true = { 'title', 'number', 'ruler', 'modeline', 'autoread',
local set_true = { 'title', 'number', 'relativenumber', 'ruler', 'modeline',
'autoread',
--- Search options
'incsearch', 'ignorecase', 'smartcase',
'showcmd', 'showmatch', 'lazyredraw', 'linebreak', 'wrap',