ack.vim icon indicating copy to clipboard operation
ack.vim copied to clipboard

Add installation steps via vim-plug

Open zamirmf opened this issue 6 months ago • 1 comments

Link to vim-plug.

.vimrc extract:

 18 let g:ackprg = 'ag --vimgrep'
 19 
 20 call plug#begin()
 21 Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
 22 Plug 'mileszs/ack.vim'
 23 call plug#end()

:PlugStatus output:

  1 Finished. 0 error(s).                                                                                           
  2 [==]                                                                                                                  
  3                                                                                                                   
  4 - fzf: OK                                                                                                            
  5 - ack.vim: OK

:Ack usage:

Screenshot 2024-01-04 at 15 58 23

zamirmf avatar Jan 04 '24 15:01 zamirmf