summaryrefslogtreecommitdiff
path: root/.vim
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 /.vim
parentfcf6b6c3eca77e9b7240a3fb1872dcffa38b8e29 (diff)
downloaddotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.tar.gz
dotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.tar.bz2
dotfiles-9907fbd8125c06ea659009403e9f79a1ee9470d0.zip
Remove vim-latex configs
Diffstat (limited to '')
-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
itle='2023-06-13 09:43:42 +0200'>2023-06-13Prepare v1.7.0René 'Necoro' Neumann2-2/+2 2023-06-05Improve changelogRené 'Necoro' Neumann1-2/+4 2023-06-05IMAP client does not need to know about max number of connectionsRené 'Necoro' Neumann2-19/+12 2023-06-04ChangelogRené 'Necoro' Neumann1-0/+4 2023-06-04Add new config option to set max number of IMAP connections.René 'Necoro' Neumann5-20/+26 Default is 5 (as was the hard-coded value before). Closes issue #98. 2023-06-04Improve locking around IMAP connect/disconnect.René 'Necoro' Neumann1-10/+26 This ensures that no connect happens _after_ a disconnect has been issued. Closes issue #97. 2023-05-20Bump golang.org/x/net from 0.9.0 to 0.10.0dependabot[bot]2-2/+3 Bumps [golang.org/x/net](https://github.com/golang/net) from 0.9.0 to 0.10.0. - [Commits](https://github.com/golang/net/compare/v0.9.0...v0.10.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> 2023-05-12Amend changelogRené 'Necoro' Neumann1-0/+1 2023-05-12Issue #95 Add warning when config can be read globally.René 'Necoro' Neumann1-0/+11 2023-05-11Issue #95: Change cache ownership.René 'Necoro' Neumann1-0/+4 There is no need for the cache to be accessible by anyone who is not us. Thus enforce the cache to be stored with 0600. 2023-05-11Issue #95: Add hint about sensible access rights.René 'Necoro' Neumann1-0/+1 2023-04-23[workflow] Port changes also to releaseRené 'Necoro' Neumann1-6/+5 2023-04-23[workflow] Checkout before go setupRené 'Necoro' Neumann1-3/+3 2023-04-23[workflow] determine go version from go.modRené 'Necoro' Neumann1-3/+2 2023-04-23Improve test to also validate error messageRené 'Necoro' Neumann1-42/+39 2023-04-22Fix/improve testsRené 'Necoro' Neumann1-59/+104 2023-04-22Improve error handlingRené 'Necoro' Neumann1-1/+11 2023-04-21Fix workflow: '1.20' needs to be quotedRené 'Necoro' Neumann2-2/+2