.vim updated
This commit is contained in:
parent
9bc4e1a098
commit
6a0e026c63
11
.vimrc
11
.vimrc
|
@ -17,7 +17,7 @@ set showcmd
|
||||||
set nocompatible " обойдёмся без стандартного vi
|
set nocompatible " обойдёмся без стандартного vi
|
||||||
set backspace=indent,eol,start
|
set backspace=indent,eol,start
|
||||||
set nofixendofline
|
set nofixendofline
|
||||||
colorscheme shine
|
colorscheme default
|
||||||
hi DiffAdd ctermfg=white
|
hi DiffAdd ctermfg=white
|
||||||
hi DiffChange ctermfg=white
|
hi DiffChange ctermfg=white
|
||||||
hi DiffDelete ctermfg=white
|
hi DiffDelete ctermfg=white
|
||||||
|
@ -38,9 +38,9 @@ endfunction
|
||||||
|
|
||||||
" Setup for the CPP coding format standard
|
" Setup for the CPP coding format standard
|
||||||
function! CppIndent()
|
function! CppIndent()
|
||||||
setlocal shiftwidth=4
|
setlocal shiftwidth=2
|
||||||
setlocal tabstop=4
|
setlocal tabstop=2
|
||||||
setlocal noexpandtab
|
setlocal expandtab
|
||||||
set textwidth=119
|
set textwidth=119
|
||||||
set tw=119
|
set tw=119
|
||||||
set colorcolumn=120,160
|
set colorcolumn=120,160
|
||||||
|
@ -220,8 +220,9 @@ Bundle 'git://git.wincent.com/command-t.git'
|
||||||
" ...
|
" ...
|
||||||
Bundle 'majutsushi/tagbar'
|
Bundle 'majutsushi/tagbar'
|
||||||
Bundle 'vim-startify'
|
Bundle 'vim-startify'
|
||||||
Bundle 'clang-complete'
|
" Bundle 'clang-complete'
|
||||||
Bundle 'scrooloose/nerdcommenter'
|
Bundle 'scrooloose/nerdcommenter'
|
||||||
|
" Bundle 'vim-scripts/OmniCppComplete'
|
||||||
|
|
||||||
filetype plugin indent on " required!
|
filetype plugin indent on " required!
|
||||||
"
|
"
|
||||||
|
|
Loading…
Reference in New Issue