"gvimrc "Auto command group setting augroup MyGUIAutoCmd autocmd! augroup END if has("gui_macvim") " Fullscreen takes up entire screen set fuoptions=maxhorz,maxvert " Command-][ to increase/decrease indentation vmap >gv vmap :edit % nnoremap :edit % " Map Command-# to switch tabs map 0gt imap 0gt map 1gt imap 1gt map 2gt imap 2gt map 3gt imap 3gt map 4gt imap 4gt map 5gt imap 5gt map 6gt imap 6gt map 7gt imap 7gt map 8gt imap 8gt map 9gt imap 9gt " Command-Option-ArrowKey to switch viewports map k imap k map j imap j map l imap l map h imap h " GUI Font set guifont=Ricty\ Diminished\ Regular\ 14 " Window size set lines=80 columns=240 endif " Start without the toolbar set guioptions& set guioptions-=T " Without scroll bars set guioptions-=r set guioptions-=l set guioptions-=L " Transparent set transparency=10 " Clean menu let g:DrChipTopLvlMenu = '' " Include user's local vim config if filereadable(expand("~/.gvimrc.local")) source ~/.gvimrc.local endif