summaryrefslogtreecommitdiffstats
path: root/after/ftplugin
diff options
context:
space:
mode:
authorNanderty <psopka@sopka.ch>2023-03-13 14:05:27 +0100
committerNanderty <psopka@sopka.ch>2023-03-13 14:05:27 +0100
commit59bd3aeee04b6ff559c51a324234a5100db0b2e1 (patch)
tree739c38a4b0bfea8744200d1a88b532afddddd8be /after/ftplugin
parentf2f01ec507b3e17494ceb149f5cd762571bf4920 (diff)
downloadneovim-config-59bd3aeee04b6ff559c51a324234a5100db0b2e1.tar.gz
neovim-config-59bd3aeee04b6ff559c51a324234a5100db0b2e1.tar.bz2
neovim-config-59bd3aeee04b6ff559c51a324234a5100db0b2e1.zip
new plugins
Diffstat (limited to 'after/ftplugin')
-rw-r--r--after/ftplugin/tex/vimtex.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/after/ftplugin/tex/vimtex.lua b/after/ftplugin/tex/vimtex.lua
new file mode 100644
index 0000000..774d3eb
--- /dev/null
+++ b/after/ftplugin/tex/vimtex.lua
@@ -0,0 +1,5 @@
+vim.g.tex_flavor='latex'
+
+vim.g.vimtex_quickfix_open_on_warning = 0
+
+vim.keymap.set('n', '<leader>ll', '<Cmd>VimtexCompile<CR>', {} )