fix(nvim): pcall edit cmd in image.nvim

This commit is contained in:
Price Hiller 2023-10-07 22:48:34 -05:00
parent 49ebd00158
commit 21ab0c1cd5
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -16,7 +16,7 @@ return {
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua;"
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua;"
require("image").setup({})
vim.cmd.edit()
pcall(vim.cmd.edit)
end,
},
}