-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
37 lines (28 loc) · 774 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
execute pathogen#infect()
syntax enable
filetype plugin indent on
"Line numbers -- activate!
set number
set t_Co=16
let g:solarized_termcolors=16
" SOLARIZED COLORSCHEMES
set background=dark
" set background=light
colorscheme solarized
"Better cmd-line completion, partial cmds respectively
set wildmenu
set showcmd
"case-insens. search except w/ caps
set ignorecase
set smartcase
"allow backspacing over autoindent/line breaks/start of insert action
set backspace=indent,eol,start
"cursor pos.
set ruler
"ask if 'wish to save changes' as opposed to failing a cmd like :q
set confirm
"use visual bell as opposed to beeping
set visualbell
"Mapping Y to act like D and C, yanking to EOL instead of acting as yy
"Basically increases consistency with D and C
map Y y$