My Vimrc
This is my simple vimrc. No extensions needed. Also works with VsVim for visual studio.
" Ctrl-d and Ctrl-u but goes one less line and centers view
nnoremap <C-d> <C-d>kzz
nnoremap <C-u> <C-u>jzz
" Provide similar functionality to Visual Studio's Alt+Up and Alt+Down.
" In single line and visual block modes
nnoremap <A-k> ddkP
vnoremap <A-k> xkP`[V`]
nnoremap <A-j> ddp
vnoremap <A-j> xp`[V`]