mirror of
				https://github.com/KevinMidboe/chsh.git
				synced 2025-10-29 12:30:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			248 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			248 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| syntax on
 | |
| set expandtab
 | |
| set tabstop=2
 | |
| set softtabstop=2
 | |
| set shiftwidth=2
 | |
| 
 | |
| set number relativenumber
 | |
| 
 | |
| filetype plugin indent on
 | |
| 
 | |
| if has("autocmd")
 | |
|   au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif
 | |
| endif
 | |
| 
 |