Last active
August 29, 2015 14:04
-
-
Save dreadwarrior/5479131b915503034224 to your computer and use it in GitHub Desktop.
~/.vimrc
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
| " Enable filetype plugins | |
| filetype plugin on | |
| filetype indent on | |
| " Highlight search results | |
| set hlsearch | |
| " Show matching brackets when text indicator is over them | |
| set showmatch | |
| " How many tenths of a second to blink when matching brackets | |
| set mat=2 | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " => Colors and Fonts | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Enable syntax highlighting | |
| syntax enable | |
| colorscheme desert | |
| set background=dark | |
| " Set extra options when running in GUI mode | |
| if has("gui_running") | |
| set guioptions-=T | |
| set guioptions+=e | |
| set t_Co=256 | |
| set guitablabel=%M\ %t | |
| endif | |
| " Set utf8 as standard encoding and en_US as the standard language | |
| set encoding=utf8 | |
| " Use Unix as the standard file type | |
| set ffs=unix,dos,mac | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " => Files, backups and undo | |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
| " Turn backup off, since most stuff is in SVN, git et.c anyway... | |
| set nobackup | |
| set nowb | |
| set noswapfile | |
| """""""""""""""""""""""""""""" | |
| " => Status line | |
| """""""""""""""""""""""""""""" | |
| " Always show the status line | |
| set laststatus=2 | |
| " Format the status line | |
| set statusline=\ %F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l\ Column:\ %c | |
| " Enable line numbering | |
| set number | |
| " Set whitespace character visibility | |
| set list | |
| set list listchars=tab:>-,trail:.,extends:>,eol:¶ | |
| " Set right margin ("color column") | |
| set cc=72 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment