apt install -y vim
apt install -y neovim
apt install -y curl 下载安装工具命令 或者wget
安装插件管理器 [vim-plug]([https://github.com/junegunn/vim-plug](https://github.com/junegunn/vim-plug))
以下命令不行的话 就直接下载压缩包或者git clone下来 将包中的plug.vim 放到 .vim/autoload/下
curl -fLo〜/ .vim/ autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
apt -y install tree lrzsz git
安装nodejs
sudo apt-get install nodejs
sudo apt install nodejs-legacy
sudo apt install npm
或者 centos下的
curl -sL install-node.now.sh/lts | bash
curl --compressed -o- -L https://yarnpkg.com/install.sh | bash
安装yarn coc平台需要此环境打包
curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
yum install -y yarn
"补全提示插件
Plug 'neoclide/coc.nvim', {'branch': 'release'}
打开nvim 安装 coc-phpls
:CocInstall coc-phpls
配置示例
" 设置行号
set nu
" 或者
set number
"设置忽略大小写
set ignorecase
" 高亮
syntax on
"自动展开目录
autocmd VimEnter * NERDTree
map <F2> :NERDTreeMirror<CR>
map <F2> :NERDTreeToggle<CR>
其他插件
" 状态栏
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
"tab补全
Plug 'ervandew/supertab'
"语法高亮
Plug 'sheerun/vim-polyglot'
"窗口浮动
Plug 'voldikss/vim-floaterm'
" 缩进
Plug 'Yggdroot/indentLine'
"树形目录
Plug 'preservim/nerdtree'
"括号补全
Plug 'jiangmiao/auto-pairs'