aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/after/ftplugin/tex.vim
blob: de2ec0bf4707e88cc9a1870cbbcc7adab63364ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
setlocal spell spelllang=en_gb
setlocal tabstop=2 shiftwidth=2

function! Synctex()
	call system('zathura --synctex-forward ' .
				\ line('.') . ':' . col('.') . ':' . shellescape(bufname('%')) . ' ' .
				\ shellescape(g:synctex_zathura_pdf_filename))
endfunction

map <C-T> :call Synctex()<CR>