Skip to content

Instantly share code, notes, and snippets.

@x684867
Last active December 24, 2015 19:59
Show Gist options
  • Select an option

  • Save x684867/6854717 to your computer and use it in GitHub Desktop.

Select an option

Save x684867/6854717 to your computer and use it in GitHub Desktop.
My Personal .vimrc (...just because I am tired of having to type this thing!)
set tabstop=4
syntax on
set nobackup
set nowb
set noswapfile
set ai
set si
set laststatus=2
set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l\ \ \ Col:\ %c
function! HasPaste()
if &paste
return 'PASTE MODE '
en
return ''
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment