Reference
Before I start, make sure to checkout the GitHub repository which contains all the configs and scripts I will be covering in this series of blogs.
Plugin Managing
To make Vim as beefy as an IDE, it is not possible without plugins, at least for me. Vim has a large and active community and there are thousands of plugins out there that can boost my developing experience.
To install plugins I will first need a plugin manager. In my case the plugin manager I picked is vim-plug.
Installing vim-plug is quite simple:
1 | curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
The actual usage of vim-plug revolves around modifying my .vimrc
file. The below snippet exists at the very top of it: