summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/autocommds.lua
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2025-03-29 12:55:31 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2025-03-29 13:52:17 +0300
commitbd298646a1110f52934871845df3effc42f339d1 (patch)
tree6540188d600bec91b8a8436bbef3251386133477 /.config/nvim/lua/user/autocommds.lua
parentee0a942d647fd594c13d0f4468e008fd855a573d (diff)
Added (not)fetchmail configHEADmaster
Diffstat (limited to '.config/nvim/lua/user/autocommds.lua')
-rw-r--r--.config/nvim/lua/user/autocommds.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/autocommds.lua b/.config/nvim/lua/user/autocommds.lua
index 934cda8..e2452bf 100644
--- a/.config/nvim/lua/user/autocommds.lua
+++ b/.config/nvim/lua/user/autocommds.lua
@@ -10,7 +10,7 @@ vim.api.nvim_create_autocmd (
callback = function()
vim.system( {'bash',
'-c',
- "latexmk -shell-escape -xelatex " .. vim.fn.expand('%:t') .. " && pkill -HUP mupdf"},
+ "echo making > file && latexmk -shell-escape -xelatex " .. vim.fn.expand('%:t') .. " && pkill -HUP mupdf"},
{detach = true})
end}
)