-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
27 lines (24 loc) · 1.18 KB
/
.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
""" GENERAL SETTINGS
set encoding=utf-8
set fileencoding=utf-8
set nocompatible
set noshowmode
set backspace=indent,eol,start " allow backspacing over everything in insert mode
set nobackup " don't keep a backup file
set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
set number " line numbers
set mouse=a " use mouse in xterm to scroll
set scrolloff=5 " 5 lines before and after the current line when scrolling
set ignorecase " ignore case
set smartcase " but don't ignore it, when search string contains uppercase letters
set hid " allow switching buffers, which have unsaved changes
set nowrap " don't wrap by default
set cursorline " show a cursorline
set updatecount=200 " this many chars befor updating .swapfile
set confirm
let &guicursor=&guicursor . ",a:blinkon0"
call pathogen#infect()
call pathogen#helptags()