-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.vimrc
19 lines (16 loc) · 792 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set nocompatible
syntax enable
color desert
set encoding=utf-8
set showcmd " display incomplete commands
filetype plugin indent on " load file type plugins + indentation
"" Whitespace
set nowrap " don't wrap lines
set tabstop=2 shiftwidth=2 " a tab is two spaces (change this to your linking)
set expandtab " use spaces, not tabs (remove this if you mostly use tabs)
set backspace=indent,eol,start " backspace through everything in insert mode
"" Searching
set hlsearch " highlight matches
set incsearch " incremental searching
set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter