Last active
December 24, 2015 19:59
-
-
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!)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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