diff options
Diffstat (limited to 'vim/after/ftplugin/tex/mappings.vim')
-rw-r--r-- | vim/after/ftplugin/tex/mappings.vim | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vim/after/ftplugin/tex/mappings.vim b/vim/after/ftplugin/tex/mappings.vim new file mode 100644 index 0000000..121cdee --- /dev/null +++ b/vim/after/ftplugin/tex/mappings.vim @@ -0,0 +1,31 @@ +inoremap <buffer> (( \left( +inoremap <buffer> )) \right) +inoremap <buffer> {{ \left\{ +inoremap <buffer> }} \right\} +inoremap <buffer> [[ \left[ +inoremap <buffer> ]] \right] +inoremap <buffer> == \,=\, +inoremap <buffer> >> \,\geq\, +inoremap <buffer> << \,\leq\, +inoremap <buffer> ++ \,+\, +inoremap <buffer> -- \,-\, + +inoremap <buffer> `a \alpha +inoremap <buffer> `b \beta +inoremap <buffer> `g \gamma +inoremap <buffer> `d \delta +inoremap <buffer> `e \varepsilon +inoremap <buffer> `z \zeta +inoremap <buffer> `h \eta +inoremap <buffer> `t \theta +inoremap <buffer> `i \iota +inoremap <buffer> `k \kappa +inoremap <buffer> `l \lambda +inoremap <buffer> `m \mu +inoremap <buffer> `n \nu +inoremap <buffer> `x \xi +inoremap <buffer> `r \rho +inoremap <buffer> `s \sigma +inoremap <buffer> `f \phi +inoremap <buffer> `p \pi +inoremap <buffer> `w \omega |