Open Alpha on every new tab with autocmd #133
lockieluke
started this conversation in
General
Replies: 1 comment
-
I replaced local alpha_start_group = vim.api.nvim_create_augroup("AlphaStart", { clear = true })
vim.api.nvim_create_autocmd("TabNewEntered", {
callback = function()
require("alpha").start()
end,
group = alpha_start_group,
})
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried making an auto command function to open alpha on each new tab I open but it didn't work, I am pretty sure that the function is actually triggered when a tab is opened but it just doesn't work
Beta Was this translation helpful? Give feedback.
All reactions