From c25acd4d12113cc1e3f6bcc280da8232156a8ec7 Mon Sep 17 00:00:00 2001 From: Shu Kutsuzawa Date: Wed, 27 Sep 2023 11:34:50 +0900 Subject: [PATCH] enable to use copilot for writing commit msg --- .config/nvim/lua/plugins/coding.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .config/nvim/lua/plugins/coding.lua diff --git a/.config/nvim/lua/plugins/coding.lua b/.config/nvim/lua/plugins/coding.lua new file mode 100644 index 00000000..d4690b56 --- /dev/null +++ b/.config/nvim/lua/plugins/coding.lua @@ -0,0 +1,10 @@ +return { + { + "zbirenbaum/copilot.lua", + opts = { + filetypes = { + gitcommit = true, + }, + }, + }, +}