-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
39 lines (27 loc) · 636 Bytes
/
.vimrc
File metadata and controls
39 lines (27 loc) · 636 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
set nocompatible " be iMproved, required
" Vundle {{{
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'bronson/vim-trailing-whitespace'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'jlanzarotta/bufexplorer'
call vundle#end() " required
filetype plugin indent on " required
" }}}
syntax on
set number
set ruler
set showmode
set showcmd
set hlsearch
set incsearch
set scrolloff=2
set modeline
" vim :set ts=4 sw=4 sts=0 noet :
set tabstop=4
set shiftwidth=4
set softtabstop=0
set noexpandtab
let g:netrw_liststyle=3