You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							939 B
						
					
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							939 B
						
					
					
				" Disable unused components | 
						|
set nobackup | 
						|
set nocompatible | 
						|
 | 
						|
"" General | 
						|
 | 
						|
filetype plugin on | 
						|
 | 
						|
" Indentation | 
						|
set autoindent | 
						|
filetype indent on | 
						|
 | 
						|
set backspace=indent,eol,start | 
						|
set tabstop=4 | 
						|
set softtabstop=4 | 
						|
set shiftwidth=4 | 
						|
set expandtab | 
						|
 | 
						|
" Now we set some defaults for the editor | 
						|
set history=1000                " keep 50 lines of command line history | 
						|
set ruler                       " show the cursor position all the time | 
						|
 | 
						|
" Suffixes that get lower priority when doing tab completion for filenames. | 
						|
" These are files we are not likely to want to edit or read. | 
						|
set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc,.png,.jpg | 
						|
 | 
						|
" Default clipboard register "+ (CLIPBOARD buffer in X) | 
						|
set clipboard=unnamedplus | 
						|
 | 
						|
set background=dark | 
						|
colorscheme hybrid_reverse | 
						|
 | 
						|
" Autoremove trailing whitespace in the following filetypes | 
						|
autocmd FileType c,cpp,ino,sh,java,php autocmd BufWritePre <buffer> %s/\s\+$//e
 | 
						|
 |