vim插件管理

前端之家收集整理的这篇文章主要介绍了vim插件管理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装vim-plug插件管理:

Unix

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Windows (PowerShell)

md ~\vimfiles\autoload
$uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
(New-Object Net.WebClient).DownloadFile(
  $uri,$ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath(
    "~\vimfiles\autoload\plug.vim"
  )
)

Add a vim-plug section to your ~/.vimrc :

  1. Begin the section with call plug#begin()
  2. List the plugins with Plug commands
  3. call plug#end() to update &runtimepath and initialize plugin system
  4. Automatically executes filetype plugin indent on and Syntax enable. You can revert the settings after the call. e.g. filetype indent off,Syntax off,etc.
  5. Reload .vimrc and :PlugInstall to install plugins.

Example: A small sensible Vim configuration

call plug#begin()
Plug 'tpope/vim-sensible'
call plug#end()

windows安装vundle插件管理

git clone https://github.com/gmarik/vundle D:@H_404_78@\Vim@H_404_78@\vimfiles@H_404_78@\bundle@H_404_78@\vundle

编辑_vimrc文件,加入

filetype off
set rtp+=$VIM/vimfiles/bundle/vundle/
call vundle#rc('$VIM/vimfiles/bundle/')
Bundle 'gmarik/vundle'

filetype plugin indent on

可以使用 :BundleInstall ,:BundleInstall! 来下载插件和更新插件

原文链接:https://www.f2er.com/bash/390318.html

猜你在找的Bash相关文章