Files
lua-nvim/lua/cargdev/plugins/ship.lua
2025-08-03 21:02:10 -04:00

18 lines
501 B
Lua

return {
"seandewar/killersheep.nvim",
event = "VeryLazy",
dependencies = {
"nvim-lua/plenary.nvim", -- Required dependency for killersheep.nvim
},
config = function()
require("killersheep").setup({
gore = true, -- Enables/disables blood and gore.
keymaps = {
move_left = "h", -- Keymap to move cannon to the left.
move_right = "l", -- Keymap to move cannon to the right.
shoot = "<Space>", -- Keymap to shoot the cannon.
},
})
end,
}