Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(editing-support): Add chatGPT.nvim #352

Merged
merged 1 commit into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions lua/astrocommunity/editing-support/chatgpt-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# chatGPT.nvim

Plugin that enables you to interact with chat-GPT, straight from neovim.

**Repository:** https://github.com/jackMort/ChatGPT.nvim

Before enabling it, set environment variable called $OPENAI_API_KEY which you can obtain here: https://platform.openai.com/account/api-keys

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.
11 changes: 11 additions & 0 deletions lua/astrocommunity/editing-support/chatgpt-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
return {
"jackMort/ChatGPT.nvim",
init = function() table.insert(astronvim.file_plugins, "ChatGPT.nvim") end,
enabled = true,
event = "VeryLazy",
depencencies = {
"MunifTanjim/nui.nvim",
"nvim-lua/plenary.nvim",
"nvim-telescope/telescope.nvim",
},
}