This my vimrc setup. Keeping your vim setup in a Git repository is cool because you can track the changes you do to your set up, you can rollback if something goes wrong, you can branch and test new settings while keeping your base setup stable.
- An UNIX box running Linux.
- Vim 8.0, Although it can work with previous versions.
- git is required for vundle-vim.
To install you must follow the following setps:
-
Clone this repository in
.vimfolder, to do this step you must have saved a backup of the.vimfolder.$ git clone git@github.com:ryctabo/vimrc.git ~/.vim -
Create a symbolic link to
vimrcfile, remember to also have a.vimrcfile backup.$ ln -s ~/.vim/vimrc ~/.vimrc
-
Install Solarized theme:
$ git clone git@github.com:altercation/vim-colors-solarized.git ~/.vim/themes/solarized $ cp ~/.vim/themes/solarized/colors/* ~/.vim/colors
-
Install Vundle.
$ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim -
Install plugins:
Launch
vimand run:PluginInstallTo install from to command line:
vim +PluginInstall +qall
Done, you already have my vim settings installed.

