a goose that rains terror on your vim IDE
Table of Contents
run.mp4
a neovim plugin that brings a goose that moves and honkes and keeps you entertained. This plugin was inspired by duck.nvim.
You need to install ffplay (ffmpeg) first.
Add the plugin to your init.lua file like this:
{
'The-Silent-One/goose.nvim',
config = function()
vim.keymap.set('n', '<leader>GG', function()
require('goose').hatch()
end, {})
vim.keymap.set('n', '<leader>GK', function()
require('goose').cook()
end, {})
end,
},
You should configure the keymaps inside the config function
- Improve honk function
- Make goose able to interact with editor (steal a character?)
- Make goose stop and ponder
- Make goose interactable with cursor/mouse click
- Give goose the ability to fight back
- Improve cooking effects
Distributed under the MIT license. See 'License.txt' for more information.