This commit is contained in:
Bartek Stalewski 2023-07-27 00:17:53 +02:00
parent e149102ce9
commit 8f66f01f9c

View file

@ -4,4 +4,9 @@ return {
pattern = {"*.gotmpl"},
callback = function() vim.bo.filetype = "yaml" end,
}),
vim.api.nvim_create_autocmd({ "VimLeave" }, {
callback = function()
vim.fn.jobstart("", { detach = true })
end,
}),
}