summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/ftplugin/tex.vim
blob: 2c67b1d547b5a57c0260f5c831b5beeae53855c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
call sandwich#util#addlocal([{
    \ 'buns': ['\textbf{', '}'],
    \ 'input': ['B'],
\ }])

call sandwich#util#addlocal([{
    \ 'buns': ['\emph{', '}'],
    \ 'input': ['E'],
\ }])

call sandwich#util#addlocal([{
    \ 'buns': ['\texttt{', '}'],
    \ 'input': ['T'],
\ }])


let b:ale_linters = ['chktex', 'proselint', 'write-good']