-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvimrc
37 lines (27 loc) · 832 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
" Great Practical Ideas for Computer Scientists
" Sample .vimrc file
" Ensure that we are in modern vim mode, not backwards-compatible vi mode
set nocompatible
set backspace=indent,eol,start
filetype off " required for Vundle plugin manager
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
" vim-c0 plugin on Github repo
Plugin 'cmugpi/vim-c0'
call vundle#end()
" Helpful information: cursor position in bottom right, line numbers on
" left
set ruler
set number
"Enable filetype detection and syntax hilighting
syntax on
filetype on
filetype indent on
filetype plugin on
" Indent as intelligently as vim knows how
set smartindent
" Show multicharacter commands as they are being typed
set showcmd