Go to file
Steins7 8985a5dbe7 Removed hardcoded value to use project ones
* ftplugin values override project ones, removing them fix the issue
2022-04-07 10:48:14 +02:00
bundle Added support for openscad files 2022-01-06 14:16:57 +01:00
ftplugin Removed hardcoded value to use project ones 2022-04-07 10:48:14 +02:00
pack/vendor/start/Spacegray.vim Installed colosheme 2019-06-30 12:09:05 +02:00
.gitignore Minor upgrades 2019-12-03 20:21:49 +01:00
.gitmodules Added support for openscad files 2022-01-06 14:16:57 +01:00
filetype.vim Dropped ctags entirely 2021-08-16 10:04:29 +02:00
README.md Fixed REAMDE 2019-12-03 20:25:07 +01:00
vimrc Removed hardcoded value to use project ones 2022-04-07 10:48:14 +02:00

A (not so(but still quite))simple vim config

This setup is a vim config using pathogen for the plugins and mannaged via git. You can find the complete documentation for pathogen here : https://github.com/tpope/vim-pathogen

Next are a few usefull informations that I mainly wrote for me to remember but that should allow you to use the same setup as me if you want to.

Installation:

Clone the respository

this will create a .vim folder in your main folder, containing all the vim config

git clone https://github.com/Steins7/Vim ~/.vim

note : if want to adapt this setup to your taste (and I think you will) you should create your own github repository and use my setup as a base for it.

(yep I'm too lazy to explain how to do that, but there should be plenty of people who will explain 
it better that me)

for vim to be able to get to your your config, you'll need to create a symbolic link. not sure if it is still needed, but in case, here is the command:

ln -s ~/.vim/vimrc ~/.vimrc

Switch to the ~/.vim directory, and fetch submodules:

this is needed in order to make sure everything is up to date

cd ~/.vim
git submodule init
git submodule update

Install a new plugin:

its really simple, just cd to the bundle folder:

cd ~/.vim/bundle

there you can put the files of the plugin you want. The most clean way to do that is to add a submodule :

git submodule add the_url_of_github_repository

Update your plugins

if you used submodules to install your plugins, that's reallly simple :

git pull --recurse-submodules