🪴 my neovim config:)
1
fork

Configure Feed

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

options: ignore binary files in `find` `grepprg`

robin 4032aa8f 0f00c1b7

+1 -1
+1 -1
config/lua/ivy/config/options.lua
··· 130 130 vim.o.laststatus = 3 131 131 132 132 -- use rg for grepping 133 - vim.o.grepprg = vim.fn.executable("rg") == 1 and "rg --vimgrep -. --" or "grep -rni --" 133 + vim.o.grepprg = vim.fn.executable("rg") == 1 and "rg --vimgrep -. --" or "grep -rniI --" 134 134 vim.o.grepformat = "%f:%l:%c:%m" 135 135 vim.g.findprg = vim.fn.executable("fd") == 1 and "fd -H -p -t f --color=never --" or "find . -type f -iregex '.*$*.*'" 136 136