Workaround for https://github.com/neovim/neovim/issues/21856.
This commit is contained in:
parent
e149102ce9
commit
8f66f01f9c
1 changed files with 5 additions and 0 deletions
|
@ -4,4 +4,9 @@ return {
|
||||||
pattern = {"*.gotmpl"},
|
pattern = {"*.gotmpl"},
|
||||||
callback = function() vim.bo.filetype = "yaml" end,
|
callback = function() vim.bo.filetype = "yaml" end,
|
||||||
}),
|
}),
|
||||||
|
vim.api.nvim_create_autocmd({ "VimLeave" }, {
|
||||||
|
callback = function()
|
||||||
|
vim.fn.jobstart("", { detach = true })
|
||||||
|
end,
|
||||||
|
}),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue