[nvim] enabled current line highlight

This commit is contained in:
Dmitry Chumak
2025-03-09 21:54:17 +03:00
parent 860e52b19d
commit 957a62b72e
2 changed files with 3 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ vim.opt.smartcase = true
-- show line numbers
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.cursorline = true
-- show trailing whitespace
vim.opt.list = true
@@ -17,6 +18,6 @@ vim.opt.listchars = {
trail = '·',
extends = '',
precedes = ''
}
}
vim.cmd([[match errorMsg /\s\+$/]])