From 0c527bb2f5b2ebca402320ab7b65179ff402ae63 Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Thu, 16 Nov 2017 22:39:24 +0100 Subject: [PATCH] Cleaning vim. --- vim/init.vim | 8 -------- 1 file changed, 8 deletions(-) diff --git a/vim/init.vim b/vim/init.vim index 14221f3..50a38be 100644 --- a/vim/init.vim +++ b/vim/init.vim @@ -46,9 +46,7 @@ au BufRead,BufNewFile *.pp filetype plugin indent on call plug#begin('~/.config/vim-plugins') -Plug 'mileszs/ack.vim' Plug 'godlygeek/tabular' -Plug 'rodjek/vim-puppet' Plug 'ctrlpvim/ctrlp.vim' Plug 'tpope/vim-fugitive' Plug 'scrooloose/nerdtree' @@ -56,7 +54,6 @@ Plug 'scrooloose/syntastic' Plug 'edkolev/tmuxline.vim' Plug 'itchyny/lightline.vim' Plug 'brendonrapp/smyck-vim' -Plug 'pearofducks/ansible-vim' Plug 'bitc/vim-bad-whitespace' Plug 'JamshedVesuna/vim-markdown-preview' call plug#end() @@ -73,7 +70,6 @@ if has("gui_running") set guifont=Hack:h13 endif -cnoreabbrev Ack Ack! let vim_markdown_preview_github=1 let g:syntastic_auto_jump = 1 let g:syntastic_enable_signs = 1 @@ -124,7 +120,3 @@ endfunction function! LightLineFugitive() return exists('*fugitive#head') ? fugitive#head() : '' endfunction - -if executable('ag') - let g:ackprg = 'ag --vimgrep' -endif