- git >= 2.2
- ctags
- ripgrep
yum install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
https://packages.endpointdev.com/
- Use yum
sudo yum install ctags
- Use src
tar xvf ctags-5.8.tar.gz
cd ctags-5.8
./configure --prefix=/app/bin/ctags
make
make install
export PATH=$PATH:/app/bin/ctags
tar xvf ripgrep-13.0.0-x86_64-unknown-linux-musl.tar.gz
export PATH=$PATH:/app/bin/ripgrep
mkdir ~/.vim/bundle
cp -r /path/to/Vundle.vim ~/.vim/bundle/
cp /path/to/Vundle.vim/test/minirc.vim ~/.vimrc
Change .vimrc
plugin path to:
file:///path/to/Vundle.vim
Then open vim and run :PluginInstall
.
Change ~/.vimrc like:
set nocompatible
syntax on
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
Plugin 'file:///opt/vim/Vundle.vim'
Plugin 'file:///opt/vim/rainbow'
Plugin 'file:///opt/vim/lightline.vim'
Plugin 'file:///opt/vim/nerdcommenter'
Plugin 'file:///opt/vim/nerdtree'
Plugin 'file:///opt/vim/papercolor-theme'
Plugin 'file:///opt/vim/LeaderF'
call vundle#end()
filetype plugin indent on
Open vim and run :PluginInstall
Copy _vimrc to ~/.vimrc