-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_vimrc
More file actions
47 lines (39 loc) · 926 Bytes
/
Copy path_vimrc
File metadata and controls
47 lines (39 loc) · 926 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 number
set hlsearch
set incsearch
set expandtab
set tabstop=4
set shiftwidth=4
set ignorecase
set wildmenu
set showcmd
set background=dark
set nobackup
colorscheme ir_black
filetype on
filetype plugin on
filetype indent on
syntax enable
" Setup Vundle
" git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
"
" Vundle config
set nocompatible " be iMproved
" filetype off " required!
set rtp+=c:/Users/bhavek.budhia/vimfiles/bundle/vundle/
let path='c:/Users/bhavek.budhia/vimfiles/bundle'
call vundle#rc(path)
"
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" " My Bundles here:
Bundle 'surround.vim'
Bundle 'Syntastic'
Bundle 'ctags.vim'
" " original repos on github
Bundle 'terryma/vim-multiple-cursors'
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-rails.git'
Bundle 'flazz/vim-colorschemes'
Bundle 'altercation/vim-colors-solarized'