16 lines
490 B
Lua
16 lines
490 B
Lua
return {
|
|
{
|
|
"seandewar/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
|
|
}
|
|
}
|