README file for this repository This repository contains the code that I use for my vim configuration
The code is organized in the following way:
-
.vimrc
: the main configuration file for vim -
plugged/
: directory containing the plugins that I use -
colors/
: directory containing the color schemes that I use -
autoload/
: directory containing the scripts that I use
To install this configuration, you need to follow these steps:
git clone [email protected]:CSantos01/vim_config.git
cd vim_config
cp .vimrc ~/.vimrc
Then install vim-plug
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Finally, inside vim, install all the plugins and source:
:PlugInstall
:source ~/.vimrc
(You may encounter an error when installing the live markdown plugin, but just press "R" to retry and it should work)