1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2026-02-09 10:30:31 +01:00

Initial version.

Add several useful packages.
This commit is contained in:
Bert Peters
2015-01-03 21:48:03 +01:00
parent 3ecc017ca0
commit 5ec6d213a3
12 changed files with 49 additions and 0 deletions

21
vimrc Normal file
View File

@@ -0,0 +1,21 @@
execute pathogen#infect()
filetype plugin indent on
filetype plugin on
syntax on
set ruler
set title
set number
set hlsearch
set incsearch
set ignorecase smartcase
set omnifunc=syntaxcomplete#Complete
set background=light
set tabstop=4 softtabstop=4 shiftwidth=4
set backspace=eol,indent,start
colorscheme molokai
map <F5> :update<CR>:make<CR>
imap <F5> <Esc>:update<CR>:make<CR>