diff --git a/nvim/help.md b/nvim/help.md index 90dc79a..a8d6aa0 100644 --- a/nvim/help.md +++ b/nvim/help.md @@ -30,7 +30,7 @@ * `{tilde}` Open file browser * `ff` Fuzzy find files in git project -* `gg` Grep searches in git project +* `fg` Grep searches in git project ### Registers diff --git a/nvim/keybindings.vim b/nvim/keybindings.vim index 23297b3..77b2216 100644 --- a/nvim/keybindings.vim +++ b/nvim/keybindings.vim @@ -18,10 +18,9 @@ nnoremap :bprev nmap " - Plugin Key Bindings - -"" grepper -nnoremap gg Grepper " Find files using Telescope command-line sugar. nnoremap ff Telescope git_files +nnoremap fg Telescope live_grep nnoremap fr Telescope registers nnoremap fb Telescope buffers nnoremap fgb Telescope git_branches diff --git a/nvim/plugins.vim b/nvim/plugins.vim index 29e20a8..a8fdba7 100644 --- a/nvim/plugins.vim +++ b/nvim/plugins.vim @@ -35,9 +35,7 @@ call plug#begin('~/.config/nvim/autoload/plugged') Plug 'nvim-lua/popup.nvim' Plug 'nvim-lua/plenary.nvim' - Plug 'mhinz/vim-grepper', { 'on': ['Grepper', '(GrepperOperator)'] } Plug 'nvim-telescope/telescope.nvim' - Plug 'BurntSushi/ripgrep' Plug 'lewis6991/gitsigns.nvim' Plug 'junegunn/vim-peekaboo'