forked from linkblaine/profile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
40 lines (31 loc) · 1.04 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
set number
set tabstop=2
set shiftwidth=2
set expandtab
set nocompatible " be iMproved, required
set cursorline
set runtimepath^=~/.vim/bundle/ctrlp.vim
set rtp+=~/.vim/bundle/Vundle.vim
set background=dark
"for CtrlP
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
set wildignore+=*\\tmp\\*,*.swp,*.zip,*.exe,*.class,*.jar,*.html,*.xml
let g:ctrlp_root_markers = ['.acignore', '.gitignore']
let g:ctrlp_working_path_mode = 'a'
let g:ctrlp_by_filename = 1
set background=light
hi CursorLine term=bold cterm=bold guibg=Grey40
execute pathogen#infect()
syntax on " Enable syntax highlighting
filetype on " Enable filetype detection
filetype indent on " Enable filetype-specific indenting
filetype plugin on " Enable filetype-specific plugins
set background=dark
" set the runtime path to include Vundle and initialize
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'kien/ctrlp.vim'
call vundle#end() " required
autocmd WinEnter * setlocal cursorline
autocmd WinLeave * setlocal nocursorline