-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
75 lines (47 loc) · 1.3 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"NeoBundle Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=~/neobundle.vim
" Required:
call neobundle#begin(expand('/home/sota/neobundle.vim'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" Add or remove your Bundles here:
NeoBundle 'scrooloose/nerdtree'
"NeoBundle 'nathanaelkane/vim-indent-guides'
NeoBundle 'justmao945/vim-clang'
" set clang options for vim-clang
let g:clang_c_options = '-std=gnu11'
let g:clang_cpp_options = '-std=c++14 '
" Re
call neobundle#end()
let g:indent_guides_enable_on_vim_startup = 1
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"End NeoBundle Scripts-------------------------
nnoremap <silent><C-e> :NERDTreeToggle<CR>
:set fileencodings=utf-8,cp932,euc-jp,sjis
:syntax on
:set encoding=utf-8
:set fileformat=unix
set number
set cursorline
set virtualedit=onemore
set smartindent
set wildmode=list:longest
"serch
set ignorecase
set smartcase
set wrapscan
set incsearch
set hlsearch
set showmatch
set smartindent
set title
set guioptions+=a