mirror of
https://github.com/bertptrs/vimconfig.git
synced 2025-12-26 13:00:32 +01:00
Move vim files to a seperate directory
This commit is contained in:
25
vim/vimrc
Normal file
25
vim/vimrc
Normal 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"
|
||||
Reference in New Issue
Block a user