Install vim plugin managerIt is recommended to install the plugin manager when using the plugin for the first time, which can simplify the steps of installing the plugin. 1. Download the plug.vim file and place it in the following autoload directory depending on the operating system: plug.vim address: https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 2. The directory structure is as follows. The installed plug-ins will be stored in the plugged directory: If there is no ~/.vim/autoload directory, create it using 3. Add the plug-vim section to the ~/.vimrc file Just write the plug-in you need between call plug#begin('~/.vim/plugged') and call plug#end() call plug#begin('~/.vim/plugged') "Use Plug "github user/project name" here to introduce the plug-in" " Rainbow bracket Plug 'luochen1990/rainbow' " " History Plug 'mhinz/vim-startify' " call plug#end()
4. Execute commands in vim. Install the plugin Install plug-in You can use the following command to specify the installation of a specific plug-in Uninstall plugin First comment or delete the configuration information of the corresponding plug-in in the vimrc configuration file, and then execute the command Update the vim-plug plugin itself Batch update all installed plug-ins Plug-in status Use this command to view the status information of the currently installed plug-ins. Add plugin demoThe following demonstrates how to add a plugin. First, make sure that there is a plug.vim file in ~/.vim/autoload Then open ~/.vimrc and add the required plugin name. Enter PlugInstall in command mode The installation has been successful. Now open vim to see the effect. 1. History file plug-in. Type vim Enter the corresponding number, or move the cursor to the corresponding entry and press <Enter> to open the file again. 1. Rainbow Brackets Plugin Matching pairs of brackets display the same color. I personally feel that rainbow brackets are very useful. The corresponding brackets can be clearly identified. To remove a plugin :This is the end of this article about the installation of vim plug-in under Linux system. For more relevant linux vim plug-in installation content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
>>: A brief analysis of JS original value and reference value issues
Generally, lists have selection functions, and si...
Code: Copy code The code is as follows: <!DOCTY...
Performance of union all in MySQL 5.6 Part 1:MySQ...
Preface After installing MySQL and Navicat, when ...
1. Packaging Vue project Enter the following name...
UCenter Home is an SNS website building system rel...
Table of contents What is async? Why do we need a...
Table of contents 1. Commonly used string functio...
Preface The essence of deadlock is resource compe...
After the article "This Will Be a Revolution&...
Table of contents 1. View the tables in the curre...
1. Single table query -> update UPDATE table_n...
This article example shares the specific code of ...
Preface Most of our MySQL online environments use...
Preface Recently I started using robot framework ...