feat: brighten line numbers
parent
dba8b88fc3
commit
539437fbec
|
@ -31,7 +31,8 @@ opt.cursorline = true -- highlight cursor line underneath the cursor horizont
|
||||||
opt.splitbelow = true -- open new vertical split bottom
|
opt.splitbelow = true -- open new vertical split bottom
|
||||||
opt.splitright = true -- open new horizontal splits right
|
opt.splitright = true -- open new horizontal splits right
|
||||||
opt.termguicolors = true -- enabl 24-bit RGB color in the TUI
|
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
|
-- Searching
|
||||||
opt.incsearch = true -- search as characters are entered
|
opt.incsearch = true -- search as characters are entered
|
||||||
opt.hlsearch = false -- do not highlight matches
|
opt.hlsearch = false -- do not highlight matches
|
||||||
|
|
Loading…
Reference in New Issue