🪴 my neovim config:)
1
fork

Configure Feed

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

options: add `--` to end of `grepformat`

robin d0dbae0e bc51c6b1

+2 -2
+2 -2
config/lua/ivy/config/options.lua
··· 134 134 vim.o.laststatus = 3 135 135 136 136 -- use rg for grepping 137 - vim.o.grepprg = vim.fn.executable("rg") == 1 and "rg --vimgrep" or "grep -n $* /dev/null" 137 + vim.o.grepprg = vim.fn.executable("rg") == 1 and "rg --vimgrep --" or "grep -n $* /dev/null" 138 138 vim.o.grepformat = "%f:%l:%c:%m" 139 - vim.g.findprg = vim.fn.executable("fd") == 1 and "fd -p -t f --color=never" or "find . -type f" 139 + vim.g.findprg = vim.fn.executable("fd") == 1 and "fd -p -t f --color=never --" or "find . -type f" 140 140 141 141 -- let me have spelling checking for english 142 142 vim.opt.spelllang = { "en" }