-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
33 lines (27 loc) · 836 Bytes
/
vimrc
File metadata and controls
33 lines (27 loc) · 836 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
" vundle
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'flazz/vim-colorschemes'
Plugin 'elzr/vim-json'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" general vim
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
set smarttab
set ruler " show line,column number
set number " show line numbers
set nowrap
colo distinguished
syntax on