Last active
August 29, 2015 14:05
-
-
Save mblankleder/ad5c9c60bf96bcddf1ee to your computer and use it in GitHub Desktop.
~/.vimrc file for vi editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " git clone git://github.com/vim-ruby/vim-ruby.git ~/.vim/bundle/vim-ruby | |
| set background=dark | |
| set tabstop=2 | |
| set shiftwidth=2 | |
| set expandtab | |
| syntax on | |
| set nocompatible | |
| filetype on " Enable filetype detection | |
| filetype indent on " Enable filetype-specific indenting | |
| filetype plugin on " Enable filetype-specific plugins | |
| " autocomplete with Ctrl+Space instead Ctrl+n | |
| inoremap <Nul> <C-n> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment