From 8fd8136ef4d20371277ea11720a1f500579995e3 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Fri, 23 May 2025 22:23:50 +0200 Subject: [PATCH] added goose --- lua/plugins/goose.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/plugins/goose.lua diff --git a/lua/plugins/goose.lua b/lua/plugins/goose.lua new file mode 100644 index 0000000..e6be2c3 --- /dev/null +++ b/lua/plugins/goose.lua @@ -0,0 +1,18 @@ +return { + 'azorng/goose.nvim', + config = function() + require('goose').setup({ + keymap = { + window = { + submit = '', + }, + }, + }) + end, + dependencies = { + 'nvim-lua/plenary.nvim', + { + 'MeanderingProgrammer/render-markdown.nvim', + }, + }, +}