Updates/fixes from mule

This commit is contained in:
2024-07-23 19:19:49 +00:00
parent 132504fbc0
commit 58a5245d53
5 changed files with 101 additions and 119 deletions

View File

@@ -2,7 +2,7 @@ return {
"jackMort/ChatGPT.nvim",
event = "VeryLazy",
opts = {
api_key_cmd = "cat" .. os.getenv("HOME") .. "/.config/.openai-api-key",
api_key_cmd = "cat " .. os.getenv("HOME") .. "/.config/.openai-api-key",
popup_input = {
submit = "<C-s>",
},
@@ -41,8 +41,8 @@ return {
"folke/which-key.nvim",
optional = true,
opts = {
defaults = {
["<leader>k"] = { name = "+ChatGPT" },
spec = {
{ "<leader>k", group = "ChatGPT" },
},
},
},

View File

@@ -111,7 +111,7 @@ return {
},
{
-- My own colorscheme, aka. thallada/farout.nvim
dir = "~/farout.nvim/",
"thallada/farout.nvim",
opts = {
dim_inactive = true,
},

View File

@@ -1,21 +0,0 @@
return {
"rest-nvim/rest.nvim",
ft = "http",
dependencies = { { "nvim-lua/plenary.nvim" } },
keys = {
{
"<leader>hr",
function()
require("rest-nvim").run()
end,
desc = "Run HTTP request under cursor",
},
{
"<leader>hp",
function()
require("rest-nvim").run(true)
end,
desc = "Preview HTTP request under cursor",
},
},
}