Skip to content

Instantly share code, notes, and snippets.

@fredoliveira
Created January 23, 2011 04:14
Show Gist options
  • Save fredoliveira/791809 to your computer and use it in GitHub Desktop.
Save fredoliveira/791809 to your computer and use it in GitHub Desktop.
macvim personalizations
color molokai2
set guioptions=aAce
set columns=120
set guifont=Inconsolata:h12
set wrap
" screw those standards, i like my tabs being just that. tabs.
set tabstop=4
set shiftwidth=4
set softtabstop=4
set noexpandtab
" list and invisible characters
set list
set listchars=tab:▸\ ,eol:¬
" setup the leader key
let mapleader = ","
" makes ,w split windows vertically
nnoremap <leader>w <C-w>v<C-w>l
" split window navigation
nnoremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment