-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
49 lines (40 loc) · 878 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
set rtp+=~/.vim/vundle/
call vundle#rc()
Bundle 'rails.vim'
Bundle 'ruby.vim'
Bundle 'eruby.vim'
Bundle 'coffee.vim'
Bundle 'Sass'
Bundle 'haml.zip'
Bundle 'javascript.vim'
Bundle 'css.vim'
Bundle 'css3'
Bundle 'git-commit'
Bundle 'surround.vim'
Bundle 'eregex.vim'
Bundle 'wombat256.vim'
" Tab
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
set autoindent
set nocompatible
set number
syntax on
set nocompatible
filetype off
filetype indent on
filetype plugin on
set t_Co=256
set background=dark
"colorscheme wombat256mod
hi Pmenu ctermbg=4
set cmdheight=2
set laststatus=2
set statusline=%{expand('%:p:t')}\ %<\(%{expand('%:p:h')}\)%=\ %m%r%y%w%{'['.(&fenc!=''?&fenc:&enc).']['.&ff.']'}[%3l,%3c]
set omnifunc=syntaxcomplete#Complete
"Ruby omni
let g:rubycomplete_buffer_loading = 1
let g:rubycomplete_classes_in_global = 1
let g:rubycomplete_rails = 1