mirror of
				https://github.com/amix/vimrc
				synced 2025-10-31 14:43:35 +08:00 
			
		
		
		
	Updated all plugins that are non-forked. Added some new plugins.
Added update_plugins.py which can fetch new plugins from GitHub. New plugins added: zencoding, vim-indent-object, taglist, nginx.vim
This commit is contained in:
		
							
								
								
									
										54
									
								
								sources_non_forked/vim-snippets/UltiSnips/texmath.snippets
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										54
									
								
								sources_non_forked/vim-snippets/UltiSnips/texmath.snippets
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,54 @@ | ||||
| ############## | ||||
| # MATH STUFF # | ||||
| ############## | ||||
| snippet eq "Equation" b | ||||
| \begin{equation} | ||||
| 	$0 | ||||
| \end{equation} | ||||
| endsnippet | ||||
|  | ||||
| snippet eqnn "Equation without number" b | ||||
| \begin{equation*} | ||||
| 	$0 | ||||
| \end{equation*} | ||||
| endsnippet | ||||
|  | ||||
| snippet eqa "Equation array" b | ||||
| \begin{eqnarray} | ||||
| 	$1 & $2 & $0 | ||||
| \end{eqnarray} | ||||
| endsnippet | ||||
|  | ||||
| snippet eqann "Equation array without numbers" b | ||||
| \begin{eqnarray*} | ||||
| 	$1 & $2 & $0 | ||||
| \end{eqnarray*} | ||||
|  | ||||
| endsnippet | ||||
| snippet frac "Fraction" w | ||||
| \frac{${1:${VISUAL:nom}}}{${2:denom}} | ||||
| endsnippet | ||||
|  | ||||
| snippet mat "Smart Matrix" | ||||
| \begin{${1:p/b/v/V/B/small}matrix} | ||||
| 	$0 | ||||
| \end{$1matrix} | ||||
| endsnippet | ||||
|  | ||||
| snippet lr( "left( right)" w | ||||
| \left( ${1:${VISUAL}} \right) | ||||
| endsnippet | ||||
|  | ||||
| snippet lr| "left| right|" w | ||||
| \left| ${1:${VISUAL}} \right| | ||||
| endsnippet | ||||
|  | ||||
| snippet lr{ "left\{ right\}" w | ||||
| \left\\{ ${1:${VISUAL}} \right\\} | ||||
| endsnippet | ||||
|  | ||||
| snippet lr[ "left[ right]" w | ||||
| \left[ ${1:${VISUAL}} \right] | ||||
| endsnippet | ||||
|  | ||||
| # vim:ft=snippets: | ||||
		Reference in New Issue
	
	Block a user
	 amix
					amix