-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.vimrc
28 lines (22 loc) · 868 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
set nocompatible
set encoding=utf-8
syntax enable
set guifont=Bitstream\ Vera\ Sans\ Mono\ 8
set showcmd " display incomplete commands
filetype plugin indent on " load file type plugins + indentation
"" Appearance
set number " show line numbers
set ruler " ruler display in status line
set showmatch " show matching brackets
"" color default
"" Searching
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase
set smartcase
set wrapscan " search around end of file
"" Whitespace
set nowrap " don't wrap lines
set tabstop=2 shiftwidth=2 " a tab is two spaces (or set this to 4)
set expandtab " use spaces, not tabs (optional)
set backspace=indent,eol,start " backspace through everything in insert mode