Skip to content

Instantly share code, notes, and snippets.

@caifara
Created March 5, 2011 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caifara/856600 to your computer and use it in GitHub Desktop.
Save caifara/856600 to your computer and use it in GitHub Desktop.
# add this to your bash_profile
alias vimroom="mvim -S ~/.focus.vim"
set lines=50
set columns=80
colorscheme koehler
set guifont=Monaco:h12
set guioptions-=r
set fuoptions=background:#00000000
set fu
" green normal text
hi Normal guifg=#B3EA46
" hide ~'s
hi NonText guifg=bg
" wrap words
set formatoptions=1
set lbr
set wrap
" no line numbers
set nonumber
" set color of status bar
hi StatusLine guibg=black guifg=#434141
hi ModeMsg guibg=black
" linebreak with whole words
set nolist
" make k and j navigate display lines
map k gk
map j gj
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment