From ac8bf08674fde574eb2caa595693e163c47f003d Mon Sep 17 00:00:00 2001 From: Squibid Date: Wed, 10 May 2023 17:20:20 -0400 Subject: killer sheep game :) --- after/plugin/killersheep.lua | 14 ++++++++++++++ lua/core/plugins.lua | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 after/plugin/killersheep.lua diff --git a/after/plugin/killersheep.lua b/after/plugin/killersheep.lua new file mode 100644 index 0000000..b2c3c4d --- /dev/null +++ b/after/plugin/killersheep.lua @@ -0,0 +1,14 @@ +require("killersheep").setup { + gore = true, + border = 'shadow', + keymaps = { + move_left = "h", + move_right = "l", + shoot = "", + }, + cannon_sprite = { + "/----\\", + "| |", + "| |", + }, +} diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 5be7755..f08d4db 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -8,6 +8,9 @@ require 'dep' { -- preformance -------------------------------------------------------------- { 'lewis6991/impatient.nvim' }, + -- GAMES + { 'seandewar/killersheep.nvim' }, + -- ui ----------------------------------------------------------------------- { 'kvrohit/mellow.nvim' }, -- colorscheme { 'lukas-reineke/indent-blankline.nvim' }, -- indentation indicators -- cgit v1.2.1