-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
44 lines (35 loc) · 847 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
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
" plugins
Plugin 'gmarik/vundle'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-rails'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
Plugin 'kien/ctrlp.vim'
" UltiSnips
Plugin 'SirVer/ultisnips'
Plugin 'honza/vim-snippets'
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
let g:UltiSnipsEditSplit="vertical"
set number
filetype plugin indent on
filetype plugin on
filetype indent on
set expandtab
set tabstop=2
set shiftwidth=2
" solarized theme
syntax enable
set background=dark
let g:solarized_termcolors=256
colorscheme solarized
" set gfn=Monaco:h14
" personal mapping
:map <F5> :NERDTreeToggle<CR>