-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
49 lines (38 loc) · 891 Bytes
/
.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
execute pathogen#infect()
call pathogen#infect()
call pathogen#helptags()
" for Vundle
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
call vundle#end()
filetype plugin indent on
" Vundle end
" blade file type
augroup filetype
autocmd! BufRead,BufNewFile BUILD set filetype=blade
augroup end
" blade end
syntax on
set autoindent
set smartindent
set tabstop=2
set shiftwidth=2
set scrolloff=10
set expandtab
set showmatch
set incsearch
set backspace=indent,eol,start
set encoding=utf-8 fileencodings=ucs-bom,utf-8,cp936
let mapleader=","
" for Tagbar
nmap <silent> <F4> :TagbarToggle<CR>
let g:tagbar_ctags_bin = 'ctags'
let g:tagbar_width = 60
let g:C_UseTool_cmake = 'yes'
let g:C_UseTool_doxygen = 'yes'
filetype plugin on
"colorscheme molokai
set background=dark
colorscheme solarized