dotvim/lua/autocmd.lua

11 lines
209 B
Lua
Raw Normal View History

2022-10-22 05:45:38 +00:00
vim.api.nvim_create_autocmd(
'UIEnter', {
callback = function()
if vim.v.event.chan == 1 then
require('ginit')
end
end,
once = true,
}
)