🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

options: add inline docs

robin ca355aa0 2a601d36

+4 -3
+4 -3
config/lua/ivy/config/options.lua
··· 43 43 vim.o.splitkeep = "screen" 44 44 45 45 -- search settings 46 - vim.o.incsearch = true 46 + vim.o.incsearch = true -- show search results while typing 47 47 vim.o.hlsearch = true 48 - vim.o.ignorecase = true 49 - vim.o.smartcase = true 48 + vim.o.ignorecase = true -- ignore case when searching; use `\C` to reset 49 + vim.o.infercase = true -- infer letter cases for a richer built-in keyword completion 50 + vim.o.smartcase = true -- don't ignore case when searching if pattern has upper case 50 51 -- substitution with preview window 51 52 vim.o.inccommand = "split" 52 53