2 " this file is an example .vimrc for the vim editor. it should be in your home directory.
4 " also, this config uses the elflord color scheme. this may require installing the full
5 " vim package, e.g.: sudo apt-get install vim
7 " cranks up the register saved buffer size to 1000 lines, since otherwise the cut buffer will only
8 " preserve the default 50 lines for a paste to another file. this makes all registers go up to
9 " this size though, so if you save to a lot of different ones, you will use more space in your
11 set viminfo='100,<1000,s10,h
13 " tells vim not to make a backup of the file before editing it; this is living dangerously.
16 " nocompatible|nocp turns off compatibility mode, allowing filename completion.
19 " elflord just happens to be the color scheme i prefer. there are a bunch.
22 " map the normal copy, cut and paste keys (ctrl-c, ctrl-x & ctrl-v) for vim.
24 imap <C-V> <ESC><C-V>i
28 " map ctrl-a to select all of the file. ctrl-i increments, whatever that is.
30 noremap <C-A> gggH<C-O>G
31 inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
32 cnoremap <C-A> <C-C>gggH<C-O>G
33 onoremap <C-A> <C-C>gggH<C-O>G
34 snoremap <C-A> <C-C>gggH<C-O>G
35 xnoremap <C-A> <C-C>ggVG