how to setup vim plugins
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
how to setup vim plugins
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Installing plugins with 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
$ ls -a ~/.vimrc #if file exists file name is displayed
$ touch ~/.vimrc #if previous command error file doesn't exist then create file
# 3. Open created file or existing file
$ 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
install vim plug
#unix curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us