-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
73 lines (61 loc) · 1.48 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
if 0 | endif
if has('vim_starting')
if &compatible
set nocompatible
endif
" Required:
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
" Required:
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" My Bundles here:
" Refer to |:NeoBundle-examples|.
" Note: You don't set neobundle setting in .gvimrc!
"NeoBundle 'Shougo/vimproc.vim', {
" \ 'build' : {
" \ 'windows' : 'tools\\update-dll-mingw',
" \ 'cygwin' : 'make -f make_cygwin.mak',
" \ 'mac' : 'make',
" \ 'linux' : 'make',
" \ 'unix' : 'gmake',
" \ },
"\ }
"NeoBundle 'Shougo/vimshell'
"NeoBundle 'Shougo/unite.vim'
"NeoBundle 'Shougo/neocomplcache'
"NeoBundle 'Shougo/vimfiler.vim'
"NeoBundle 'lilydjwg/colorizer'
"NeoBundle 'tpope/vim-fugitive'
":set statusline+=%{fugitive#statusline()}
"NeoBundle 'itchyny/lightline.vim'
"NeoBundle 'hallison/vim-markdown'
NeoBundle 'scrooloose/nerdcommenter'
NeoBundle 'w0ng/vim-hybrid'
call neobundle#end()
syntax on
set t_Co=256
set background=dark
colorscheme hybrid
" Required:
filetype plugin indent on
set number
set nobackup
set noswapfile
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set autoindent
set smartindent
set pastetoggle=<C-e>
let NERDSpaceDelims = 1
nmap ,, <Plug>NERDCommenterToggle
vmap ,, <Plug>NERDCommenterToggle
set mouse=a
set ttymouse=xterm2
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck