my vimrc + tips
NERDTree Plugin: http://www.vim.org/scripts/script.php?script_id=1658
Minibufexplorer: http://www.vim.org/scripts/script.php?script_id=159
tab or shift tab while in buffexplorer - shift between buffs.
Close a buffer without closing the window: http://vim.wikia.com/wiki/VimTip622
CTRL + w then arrow keys - switch to different "windows" in screen.
vw or v + arrowkeys - will highlight row. to paste just press p
ESC + commands below
:u - undo
:n - where n is line number
:e path/to/file - new/edit file. you can press tab for autocomplete.
dw - delete word to the right
db - delete word to the left
dd - delete line
yyp - copy and paste a line
x - delete a word to the right
X - delete a word to the left
w - move to next word
b - move to previous word
0 - move to beginning of line
$ - move to end of line
o - start editing line below
O - start editing line above
I - edit beginning of line
A - edit end of line
:tabn - next tab mapped to CTRL+Left (a bit useless with minibuffexplorer installed)
:tabp - previous tab mapped to CTRL+Right (a bit useless with minibuffexplorer installed)