-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_vimrc
More file actions
47 lines (36 loc) · 796 Bytes
/
_vimrc
File metadata and controls
47 lines (36 loc) · 796 Bytes
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
set background=dark
color molokai
set guioptions-=T
set backspace=indent,eol,start
set nu
set nocompatible
set shell=cmd.exe
set shellcmdflag=/C
syntax on
filetype plugin indent on
set autochdir
set tabstop=8
set shiftwidth=4
set softtabstop=4
set expandtab
" Disable bells...
set vb t_vb=
" Set Font
set guifont=Consolas:h12
execute pathogen#infect()
" taglist
let Tlist_Ctags_Cmd='c:/tools/ctags.exe'
let Tlist_Inc_Winwidth=0
let Tlist_GainFocus_On_ToggleOpen=1
let Tlist_Auto_Highlight_Tag=1
set tags=./tags;tags,d:/user/daniel/ws/jdk_src_7u45/tags
" NERDTree
let NERDTreeQuitOnOpen=1
let NERDTreeShowBookmarks=1
" Key Mappings
imap jj <ESC>
map ,tl <ESC>:TlistToggle<CR>
map ,nt <ESC>:NERDTree<CR>
map ,nf <ESC>:NERDTreeFind<CR>
map ,be <ESC>:BufExplorer<CR>
map ,ts <ESC>:ts<CR>