Skip to content

Instantly share code, notes, and snippets.

@mrtazz
Created October 27, 2012 03:22
Show Gist options
  • Select an option

  • Save mrtazz/3962826 to your computer and use it in GitHub Desktop.

Select an option

Save mrtazz/3962826 to your computer and use it in GitHub Desktop.

Revisions

  1. mrtazz created this gist Oct 27, 2012.
    16 changes: 16 additions & 0 deletions ham.vim
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    "
    " File: ham.vim
    "
    " When you need to go HAM
    "
    if &cp || (exists('g:loaded_ham_vim') && g:loaded_ham_vim)
    finish
    endif
    let g:loaded_ham_vim = 1

    function! ham#Ham()
    setlocal statusline+=\ HAM
    echo "HARD AS A MOTHERFUCKER"
    endfunction

    command! HAM :call ham#Ham()