1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Move vim files to a seperate directory

This commit is contained in:
Bert Peters
2015-03-20 12:12:59 +01:00
parent cc4a9d1413
commit b98b8cde12
15 changed files with 50 additions and 33 deletions

View File

@@ -0,0 +1 @@
set expandtab

View File

@@ -0,0 +1 @@
setlocal autoindent

1
vim/autoload/pathogen.vim Symbolic link
View File

@@ -0,0 +1 @@
../pathogen/autoload/pathogen.vim

1
vim/bundle/molokai Submodule

Submodule vim/bundle/molokai added at db8ce13b37

1
vim/bundle/syntastic Submodule

Submodule vim/bundle/syntastic added at b340672bd0

1
vim/bundle/vim-latex Submodule

Submodule vim/bundle/vim-latex added at 69c12a8b28

1
vim/bundle/vim-less Submodule

Submodule vim/bundle/vim-less added at bd34eba9b8

1
vim/pathogen Submodule

Submodule vim/pathogen added at b9fb0dfd81

25
vim/vimrc Normal file
View File

@@ -0,0 +1,25 @@
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>
"language specific syntastic configurtion
let g:syntastic_cpp_compiler="g++"
let g:syntastic_cpp_compiler_options = "-std=c++11 -Wall -Wextra -Wpedantic"