Technical requirements
In this chapter, we will be covering ways to keep your .vimrc
file organized. There’s no supporting code – you’re welcome to bring along your .vimrc
file and try out the techniques suggested in this chapter.
In addition, we’ll be installing some packages with pip
, so you may want to make sure you have pip installed. You can install pip by running:
$ python3 -m ensurepip --upgrade
Or alternatively, if the above doesn’t work for some reason:
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ python3 get-pip.py