dwyl / learn-vim

💻 Learn how to use the Vim (or Helix!) text editor to write/edit code *much* faster and get more done in less time! ⏳❤️ ✅
9 stars 0 forks source link

Vundle? #12

Closed nelsonic closed 5 years ago

nelsonic commented 5 years ago

visit: https://github.com/VundleVim/Vundle.vim

First:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

Then add the following to your .vimrc file:

set nocompatible              " be iMproved, required by Vundle
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

" These are two plugins that will be installed/managed by Vundle:
Plugin 'slashmili/alchemist.vim'
Plugin 'scrooloose/nerdtree'

" All of Plugins must be added before the following line
call vundle#end()            " required

Finally restart Vim and run the following command: :PluginInstall

image