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

View File

@@ -29,6 +29,7 @@ local plugins = {
}) })
vim.cmd('colorscheme github_light_colorblind') vim.cmd('colorscheme github_light_colorblind')
-- vim.cmd('colorscheme github_light')
-- vim.cmd('colorscheme github_dark_colorblind') -- vim.cmd('colorscheme github_dark_colorblind')
-- vim.cmd('colorscheme github_dark') -- vim.cmd('colorscheme github_dark')
end, end,