From d5d6850bc7af6dd1f6d1024986d4f105ed6e5f7d Mon Sep 17 00:00:00 2001 From: TLCooper4031 <58536802+TLCooper4031@users.noreply.github.com> Date: Wed, 30 Apr 2025 08:37:31 -0400 Subject: [PATCH] feat(copilot): add atomic note prompt --- lua/custom/plugins/copilot.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index b2f94894..ffba2575 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -8,6 +8,15 @@ return { build = 'make tiktoken', -- Only on MacOS or Linux opts = { -- See Configuration section for options + prompts = { + WriteAtomic = { + system_prompt = 'You are a seasoned and experienced Editor. You job is to assist a budding writer and researcher with writing at a higher level.', + prompt = 'Please review the following Atomic Note. I want you to analyse it and provide me with feedback. Do not rewrite it. I want to keep my tone and style of writing. I just want to know where I can improve the quality of my writing. A bonus would be to identify any potential biases or gaps in the content which I can focus on adding or improving. But most important is to identify any deficiencies and strengths in the writing. Use the buffer for context: #buffer', + mapping = 'apwa', + description = 'Copilot: Write Atomic Note', + }, + }, + -- You can add more prompts here }, -- See Commands section for default commands if you want to lazy load on them },