remove ack.vim

master
Paul Walko 2018-06-12 23:27:26 -04:00
parent e7fff44ee5
commit 2d87eb80d9
2 changed files with 1 additions and 2 deletions

1
vimrc
View File

@ -8,7 +8,6 @@ Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'Shougo/unite.vim' Plug 'Shougo/unite.vim'
Plug 'devjoe/vim-codequery' Plug 'devjoe/vim-codequery'
Plug 'mileszs/ack.vim'
call plug#end() call plug#end()
"""" General Settings """" General Settings

2
zshrc
View File

@ -37,12 +37,12 @@ export KEYTIMEOUT=1
bindkey '^K' history-beginning-search-backward bindkey '^K' history-beginning-search-backward
bindkey '^J' history-beginning-search-forward bindkey '^J' history-beginning-search-forward
bindkey '^w' backward-kill-word bindkey '^w' backward-kill-word
bindkey '\e[2~' insert-last-word
if [ -f /etc/os-release ]; then if [ -f /etc/os-release ]; then
. /etc/os-release . /etc/os-release
if [ "$ID" = "rhel" ]; then if [ "$ID" = "rhel" ]; then
bindkey '\e[1~' beginning-of-line bindkey '\e[1~' beginning-of-line
bindkey '\e[4~' end-of-line bindkey '\e[4~' end-of-line
bindkey '\e[2~' insert-last-word
fi fi
fi fi