feat: brighten line numbers

main
jaredgoldman 2024-07-11 15:19:58 -04:00
parent dba8b88fc3
commit 539437fbec
1 changed files with 19 additions and 18 deletions

View File

@ -31,7 +31,8 @@ opt.cursorline = true -- highlight cursor line underneath the cursor horizont
opt.splitbelow = true -- open new vertical split bottom
opt.splitright = true -- open new horizontal splits right
opt.termguicolors = true -- enabl 24-bit RGB color in the TUI
api.nvim_set_hl(0, "LineNr", { fg = "#5f87af", blend = 0 })
api.nvim_set_hl(0, "CursorLineNr", { fg = "#ffd700", blend = 0 })
-- Searching
opt.incsearch = true -- search as characters are entered
opt.hlsearch = false -- do not highlight matches