Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ call vundle#rc()
Bundle 'gmarik/vundle'

" My Bundles
Bundle 'Valloric/YouCompleteMe'
"Bundle 'Valloric/YouCompleteMe'

" Recognize file types / set indent mode
filetype plugin indent on
Expand Down
31 changes: 31 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# vimrc

Just a fork from the great dotfiles repository by Felix Geisendörfer (https://github.com/felixge/dotfiles) with some changings

### Howto Install

##### 1. get vimrc-package (via [eri451](https://github.com/eri451/)) in $place
```
cd $place
git clone https://github.com/vv01f/vimrc.git
```
##### 2. create symlinks for each users to be subject to this config
```
cd ~
ln -s $place/.vim ~/.vim
ln -s $place/.vimrc ~/.vimrc
```
##### 3. get [Vundle](https://github.com/gmarik/Vundle.vim) (via [gmarik](https://github.com/gmarik/)) to ~/.vim/bundle/
```
cd ~/.vim/bundle
git clone https://github.com/gmarik/Vundle.vim.git
```
##### 4. (optionally) en-/disable "MyBundles"

option is to be found around line 23 in ~/.vimrc

##### 5. install Bundles
```
vim +BundleInstall
```
##### 6. start vim the 1st time with the new config
```
vim
```