Created
May 4, 2009 22:25
-
-
Save arockwell/106711 to your computer and use it in GitHub Desktop.
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 nocompatible | |
| :colorscheme koehler | |
| set tabstop=4 softtabstop=4 shiftwidth=4 noexpandtab | |
| set ruler | |
| set history=1000 | |
| runtime macros/matchit.vim | |
| set wildmode=list:longest | |
| set ignorecase | |
| set smartcase | |
| set scrolloff=3 | |
| set backupdir=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp | |
| set directory=~/.vim-tmp,~/.tmp,~/tmp,/var/tmp,/tmp | |
| " Intuitive backspacing in insert mode | |
| set backspace=indent,eol,start | |
| " File-type highlighting and configuration. | |
| " Run :filetype (without args) to see what you may have | |
| " to turn on yourself, or just set them all to be sure. | |
| syntax on | |
| filetype on | |
| filetype plugin on | |
| filetype indent on | |
| " Highlight search terms... | |
| set hlsearch | |
| set incsearch " ...dynamically as they are typed. | |
| set shortmess=atI | |
| nnoremap <silent> <buffer> <leader>i :JavaImport<cr> | |
| set tags=./tags,tags,~/../../JavaPrograms/workspace/tags | |
| let java_mark_braces_in_parens_as_errors=1 | |
| let java_highlight_all=1 | |
| let java_highlight_debug=1 | |
| let java_ignore_javadoc=1 | |
| let java_highlight_java_lang_ids=1 | |
| let java_highlight_functions="style" | |
| let java_minlines = 150 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment