summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-27 20:57:26 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-05-27 20:57:26 +0200
commit9907fbd8125c06ea659009403e9f79a1ee9470d0 (patch)
tree516fed01d438e7e859c0ff08a49bb66c7ac00387
parentfcf6b6c3eca77e9b7240a3fb1872dcffa38b8e29 (diff)
downloaddotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.tar.gz
dotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.tar.bz2
dotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.zip
Remove vim-latex configs
-rw-r--r--.vim/after/ftplugin/tex.vim9
-rw-r--r--.vimrc15
2 files changed, 0 insertions, 24 deletions
diff --git a/.vim/after/ftplugin/tex.vim b/.vim/after/ftplugin/tex.vim
deleted file mode 100644
index cfb1bda..0000000
--- a/.vim/after/ftplugin/tex.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" disable annoying {{ and (( completion
-call IMAP('{{', '{{', 'tex')
-call IMAP('((', '((', 'tex')
-
-" ignore some more stuff
-let g:Tex_IgnoredWarnings.="\nFont shape"
-let g:Tex_IgnoredWarnings.="\nFloat too large"
-let g:Tex_IgnoredWarnings.="\nUserWarning"
-let g:Tex_IgnoreLevel+=3
diff --git a/.vimrc b/.vimrc
index 19a165f..58aa4d1 100644
--- a/.vimrc
+++ b/.vimrc
@@ -126,21 +126,6 @@ let g:python_highlight_builtin_funcs_kwarg=0
let g:python_highlight_all = 1
let g:python_highlight_space_errors = 1
-" default to latex for .tex files
-let g:tex_flavor = "latex"
-let g:Tex_DefaultTargetFormat="pdf"
-let g:Tex_ViewRule_pdf = "zathura"
-
-" do not do concealment in .tex files -- just too slow (and ugly)
-let g:tex_conceal = ""
-
-" remove some unneeded stuff from vim-latex
-let g:Tex_PromptedEnvironments = ""
-let g:Tex_HotKeyMappings = ""
-let g:Tex_EnvironmentMaps = 0 " use UltiSnips for this task
-let g:Tex_FontMaps = 0
-let g:Tex_SectionMaps = 0
-
" use pipes instead of temp files
let g:GPGUsePipes = 1