updated with more docs and more nice options.
[feisty_meow.git] / database / configuration / vim / dotvimrc
1
2 set viminfo='100,<1000,s10,h
3 " cranks up the register saved buffer size to 1000 lines, since otherwise the cut buffer will only
4 " preserve the default 50 lines for a paste to another file.  this makes all registers go up to
5 " this size though, so if you save to a lot of different ones, you will use more space in your
6 " viminfo file.
7
8 set nobk
9 " tells vim not to make a backup of the file before editing it; this is living dangerously.
10
11 set nocompatible
12 " nocompatible|nocp turns off compatibility mode, allowing filename completion.
13
14 colorscheme elflord
15 " elflord just happens to be the color scheme i prefer.  there are a bunch.
16
17