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
.vim
folder, to do this step you must have saved a backup of the.vim
folder.$ git clone git@github.com:ryctabo/vimrc.git ~/.vim
-
Create a symbolic link to
vimrc
file, remember to also have a.vimrc
file 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
vim
and run:PluginInstall
To install from to command line:
vim +PluginInstall +qall
Done, you already have my vim settings installed.