Skip to content

Commit

Permalink
feat: add installer skeleton code
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Nov 27, 2023
1 parent 440c657 commit d636e6d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions installer.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
local buffer = vim.api.nvim_create_buf(true, true)
vim.api.nvim_win_set_buf(0, buffer)

vim.api.nvim_create_autocmd("BufEnter", {
buffer = buffer,
callback = function()
vim.notify("Installation time")
end,
})

0 comments on commit d636e6d

Please sign in to comment.