Skip to content

Instantly share code, notes, and snippets.

@stephencelis
Created January 26, 2010 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephencelis/286439 to your computer and use it in GitHub Desktop.
Save stephencelis/286439 to your computer and use it in GitHub Desktop.
MacVim meets WriteRoom
" MacVim meets WriteRoom.
if has("autocmd")
augroup txt
au!
autocmd GUIEnter *.txt set nolist
autocmd GUIEnter *.txt set columns=80
autocmd GUIEnter *.txt set noruler
autocmd GUIEnter *.txt set nonumber
autocmd GUIEnter *.txt set linebreak
autocmd VimEnter *.txt set fullscreen
augroup END
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment