You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			435 B
		
	
	
	
		
			VimL
		
	
			
		
		
	
	
			14 lines
		
	
	
		
			435 B
		
	
	
	
		
			VimL
		
	
" Setting nocompatible here because this setting can effect other settings.
 | 
						|
" The vim help suggests this as the first setting because of the side effects.
 | 
						|
set nocompatible
 | 
						|
 | 
						|
source $XDG_CONFIG_HOME/vim/xdg.vim
 | 
						|
source $XDG_CONFIG_HOME/vim/config.vim
 | 
						|
source $XDG_CONFIG_HOME/vim/workarounds.vim
 | 
						|
 | 
						|
call plug#begin($XDG_DATA_HOME.'/vim/plugged')
 | 
						|
source $XDG_CONFIG_HOME/vim/plug.vim
 | 
						|
call plug#end()
 | 
						|
 | 
						|
source $XDG_CONFIG_HOME/vim/settings.vim
 |