blob: 05d02dd0bdaaf68daca6ab6ff8c6be1868bcdaf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
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
nnoremap <buffer> <LocalLeader>a :call SynctexShow()<CR><CR>
nnoremap <buffer> <LocalLeader>i :Latexmk<CR>
nnoremap <buffer> <LocalLeader>e :LatexErrors<CR>
nnoremap <buffer> <LocalLeader>o :LatexView<CR>
nnoremap <buffer> <LocalLeader>k :LatexmkStop<CR>:LatexmkClean<CR>
nnoremap <buffer> <LocalLeader>h :split header.sty<CR>
iabbrev <buffer> dd \d
|