“Instalando plugins com vim-plug” Respostas de código

Como configurar plugins Vim

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

Instalando plugins com vim-plug

1. Install vim-plug so that it auto-loads at launch
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
  https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  
2. Check if ~/.vimrc file exists
 $ ls -a ~/.vimrc

3. if previous command error file doesn't exist then create and open file in vim
 $ vim ~/.vimrc #open file in vim
 
4. Paste following text. Example below install emmet
call plug#begin()
Plug 'mattn/emmet-vim' 
call plug#end()

5. Save File using write function
:w 

6. Run plugin install prompt
:PlugInstall
 
 
 
 
Brix_da_best

Instale o plugue Vim

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

Respostas semelhantes a “Instalando plugins com vim-plug”

Perguntas semelhantes a “Instalando plugins com vim-plug”

Procure respostas de código populares por idioma

Procurar outros idiomas de código