-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_vimrc
More file actions
45 lines (35 loc) · 853 Bytes
/
_vimrc
File metadata and controls
45 lines (35 loc) · 853 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
40
41
42
43
44
45
" Setup pathogen
call pathogen#infect()
call pathogen#helptags()
" Setup solarized
syntax enable
set background=dark
colorscheme solarized
" Visual bell instead of annoying beep
set vb
" Gui setup
" remove useless menu/tool bars
" remove scrollbar
" keep the vim icon
" use console dialogs instead of popups
set guioptions=aci
" Tab settings
" Convert tabs to spaces
set expandtab
" Keep indentation when starting new lines
set autoindent
" Line numbers
set relativenumber
" Make searches wrap around the end of the file
set wrapscan
" Printing options
set printoptions=duplex:long,paper:letter
" Make command line two lines high
set cmdheight=2
" Always show status line
set laststatus=2
set statusline=%f\ %m\ %r\ Line:%l%L[%p%%]\ Col:%v\ Buf:#%n\ [%b][0x%B]
"windows specific settings
if has("win32")
set guifont=consolas:h12
endif