“Installieren von Plugins mit VIM-Plug” Code-Antworten

So richten Sie VIM -Plugins ein

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

Installieren von Plugins mit 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

VIM -Stecker installieren

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

Ähnliche Antworten wie “Installieren von Plugins mit VIM-Plug”

Fragen ähnlich wie “Installieren von Plugins mit VIM-Plug”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen