summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2013-02-04 19:27:27 +0100
committerAndreas Maunz <andreas@maunz.de>2013-02-04 19:27:27 +0100
commit9a2a6c1f54bb652fb80d6c9f0669304914f34ef2 (patch)
tree12771a7c1d5fbadb8219b4777e87388155d02c3d /_posts
parent982260f1a0f8cbcfe0816a66704d1b55b53a6a2c (diff)
Fixed vim latex
Diffstat (limited to '_posts')
-rw-r--r--_posts/2012-05-18-using-vim.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/_posts/2012-05-18-using-vim.md b/_posts/2012-05-18-using-vim.md
index dc03cf5..d8a4a57 100644
--- a/_posts/2012-05-18-using-vim.md
+++ b/_posts/2012-05-18-using-vim.md
@@ -348,20 +348,6 @@ Now you can edit and compile TeX files.
Basic editing and compiling
---------------------------
-Create file `~/.vim/ftplugin/tex.vim` and insert
-
- " indentation
- set sw=2
-
- " compiler options
- let g:Tex_DefaultTargetFormat='dvi'
- let g:Tex_MultipleCompileFormats='dvi,pdf'
- let g:Tex_FormatDependency_pdf = 'dvi,ps,pdf'
- let g:Tex_CompileRule_dvi = 'latex --interaction=nonstopmode $* --src-specials'
- let g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi'
- let g:Tex_CompileRule_pdf = 'ps2pdf $*.ps'
-
-
Add this to your `~/.vimrc`:
" REQUIRED. This makes **Vim** invoke Latex-Suite when you open a tex file.