-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
57 lines (40 loc) · 962 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
49
50
51
52
53
54
55
" Note: Skip initialization for vim-tiny or vim-small.
if 0 | endif
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=~/.vim/bundle/neobundle.vim/
" Required:
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" My Bundles here:
NeoBundle 'tomasr/molokai'
NeoBundle 'scrooloose/nerdtree'
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
syntax enable
set background=dark
colorscheme molokai
"if &term =~ "xterm-256color" || "screen-256color"
" set t_Co=256
" set t_Sf=[3%dm
" set t_Sb=[4%dm
"elseif &term =~ "xterm-color"
" set t_Co=8
" set t_Sf=[3%dm
" set t_Sb=[4%dm
"endif
set number
set title
set showmatch
set tabstop=4
set autoindent
set shiftwidth=4
set expandtab