当前位置: 首页 > 工具软件 > vim-plug > 使用案例 >

vim-plug + nerdtree + vim-colorschemes

端木承业
2023-12-01
1.下载vim-plug

cd ~/.vim/autoload
wget https://github.com/junegunn/vim-plug/archive/0.10.0.tar.gz
tar -xvf 0.10.0.tar.gz
cp vim-plugxxxxxxx/plug.vim ./

2.配置vim-plug , 安装 vim-colorscheme 和 nerdtree
2-1 修改~/.vimrc
vim ~/.vimrc

输入:

" vim
set nocompatible

" vim-plug
call plug#begin('~/.vim/plugged')
Plug 'flazz/vim-colorschemes'
Plug 'scrooloose/nerdtree'
call plug#end()

" colorscheme
colorscheme molokai
2-2. 退出重进.vimrc,然后运行安装命令:
:PlugInstall
3. vim-plug排雷

不要下载github上推荐的链接,否则运行的时候,会有很多报错。
正确的做法是下载历史的tag,如:
https://github.com/junegunn/vim-plug/archive/0.10.0.tar.gz
并将其中的plug.vim 拷贝到 ~/.vim/autoload中即可。

4. 我目前的配置
" vim
set nocompatible

" vim-plug
call plug#begin('~/.vim/plugged')
Plug 'flazz/vim-colorschemes'
Plug 'scrooloose/nerdtree'
call plug#end()
" vim-plug colorscheme
colorscheme molokai

" tab 
" a tab takes 4-spaces-wide
set tabstop=4
" a indent takes 4-spaces-wide
set shiftwidth=4
" a tab consist of 4 spaces
set expandtab
set smarttab
" this is for tab party,disable it
set softtabstop=0
 类似资料: