Skip to content

Commit 023e840

Browse files
authored
feat(editing-support): Add chatGPT.nvim (#352)
1 parent d776458 commit 023e840

2 files changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# chatGPT.nvim
2+
3+
Plugin that enables you to interact with chat-GPT, straight from neovim.
4+
5+
**Repository:** https://github.com/jackMort/ChatGPT.nvim
6+
7+
Before enabling it, set environment variable called $OPENAI_API_KEY which you can obtain here: https://platform.openai.com/account/api-keys
8+
9+
ChatGPT is a Neovim plugin that allows you to effortlessly utilize the OpenAI ChatGPT API, empowering you to generate natural language responses from OpenAI's ChatGPT directly within the editor in response to your inquiries.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
return {
2+
"jackMort/ChatGPT.nvim",
3+
init = function() table.insert(astronvim.file_plugins, "ChatGPT.nvim") end,
4+
enabled = true,
5+
event = "VeryLazy",
6+
depencencies = {
7+
"MunifTanjim/nui.nvim",
8+
"nvim-lua/plenary.nvim",
9+
"nvim-telescope/telescope.nvim",
10+
},
11+
}

0 commit comments

Comments
 (0)