Skip to content

Commit

Permalink
fix: try to make installer work
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Nov 27, 2023
1 parent d636e6d commit de31944
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions installer.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
local buffer = vim.api.nvim_create_buf(true, true)
vim.api.nvim_win_set_buf(0, buffer)
vim.api.nvim_buf_set_name(buffer, "rocks.nvim installer")

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

vim.api.nvim_win_set_buf(0, buffer)

0 comments on commit de31944

Please sign in to comment.