1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: swapped async tex previewer

This commit is contained in:
2023-08-10 03:48:56 +02:00
parent 6a685bae7a
commit 9e9a73232d
5 changed files with 26 additions and 29 deletions

View File

@@ -19,7 +19,7 @@ vim.filetype.add({
vim.api.nvim_create_autocmd({ 'VimLeave' },
{
pattern = { 'c' },
pattern = { '*.c' },
command = '!cclear'
})
@@ -105,7 +105,7 @@ vim.api.nvim_create_autocmd({ 'BufEnter', 'FileType' },
vim.api.nvim_create_autocmd({ 'VimLeave' },
{
pattern = { 'tex' },
pattern = { '*.tex' },
command = '!texclear %'
})