1
1
Fork 0

vim grepper

This commit is contained in:
Ava Gaiety Wroten 2021-04-11 10:30:45 -05:00
parent 0711548d64
commit 6703bcdaa7
3 changed files with 6 additions and 0 deletions

View file

@ -6,5 +6,7 @@ Several tools can find configs by setting the fish variable below:
```bash
set -Ux XDG_CONFIG_HOME {location_of_dotfiles}
sudo pacman -S ripgrep
sudo pacman -S sed
```

View file

@ -25,6 +25,7 @@
* `<Leader>{tilde}` Open file browser
* `<Leader>ff` Fuzzy find files in git project
* `<Leader>gg` Grep searches in git project
### Registers

View file

@ -87,6 +87,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')
Plug 'nvim-lua/popup.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'mhinz/vim-grepper', { 'on': ['Grepper', '<plug>(GrepperOperator)'] }
Plug 'nvim-telescope/telescope.nvim'
Plug 'BurntSushi/ripgrep'
@ -178,3 +179,5 @@ let g:startify_custom_header = [
\ ]
let g:startify_change_to_dir = 0
"" grepper
nnoremap <leader>gg <cmd>Grepper<cr>