17 lines
		
	
	
		
			304 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			304 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Set gui options
 | 
						|
" - a Autoselect
 | 
						|
" - e Add tab pages
 | 
						|
" - g Grey menu items
 | 
						|
" - i Use the Vim icon
 | 
						|
set guioptions=aegi
 | 
						|
 | 
						|
if platform#is_windows()
 | 
						|
  set guifont=Source\ Code\ Pro:h10
 | 
						|
else
 | 
						|
  " Set default font
 | 
						|
  set guifont=Source\ Code\ Pro\ Medium\ 9
 | 
						|
endif
 | 
						|
 | 
						|
" Allow space for line numbers
 | 
						|
set columns=85
 |