Enabled incremental search highlighting.

pull/166/head
Kevin James Lausen 3 years ago
parent 26a3b7ebd9
commit 6f1bf54fa5

@ -6,6 +6,7 @@ vim.opt.completeopt = { "menuone", "noselect" } -- mostly just for cmp
vim.opt.conceallevel = 0 -- so that `` is visible in markdown files vim.opt.conceallevel = 0 -- so that `` is visible in markdown files
vim.opt.fileencoding = "utf-8" -- the encoding written to a file vim.opt.fileencoding = "utf-8" -- the encoding written to a file
vim.opt.hlsearch = true -- highlight all matches on previous search pattern vim.opt.hlsearch = true -- highlight all matches on previous search pattern
vim.opt.incsearch = true -- Turn on incremental search highlighting.
vim.opt.ignorecase = true -- ignore case in search patterns vim.opt.ignorecase = true -- ignore case in search patterns
vim.opt.mouse = "a" -- allow the mouse to be used in neovim vim.opt.mouse = "a" -- allow the mouse to be used in neovim
vim.opt.pumheight = 10 -- pop up menu height vim.opt.pumheight = 10 -- pop up menu height

Loading…
Cancel
Save