Vim setup.
Hello.
In this post I intend to write down the various dot files, scripts, plugins and colorschemes I prefer to have on any new installation of Vim.
The first script I usually download is the Colors Sampler Pack. I know it's a purely aesthetic thing, and I only really ever use InkPot or Desert, but it's nice to have all the colors of the rainbow at my fingertips.
For Session Management I prefer sessmgr.
I generally add the following to my _vimrc:
set tabstop=4
set shiftwidth=4
set ignorecase
set bs=2
set ai
and I like to have the following in my _gvimrc:
set hlsearch
syntax on
set guifont=Lucida_Console:h7
colorscheme InkPot
win 80 70
I'm sure there is more, but this will serve as a placeholder for now.