From be99c89560755a04f37c5bbae569515cbfc776c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Fri, 24 Nov 2023 13:03:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20perf(tgpt):=20use=20multiline=20?= =?UTF-8?q?instead=20of=20interactive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fish/functions/gpt.fish | 3 +-- .config/hypr/pyprland.toml | 2 +- .config/nvim/lua/plugins/extras/coding/ai/gpt.lua | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.config/fish/functions/gpt.fish b/.config/fish/functions/gpt.fish index 3bfdd7f7..756bd3b7 100644 --- a/.config/fish/functions/gpt.fish +++ b/.config/fish/functions/gpt.fish @@ -1,4 +1,3 @@ function gpt --wraps='tgpt -i' --description 'alias gpt=tgpt -i' - tgpt -i $argv - + tgpt $argv end diff --git a/.config/hypr/pyprland.toml b/.config/hypr/pyprland.toml index 99ef2563..f94adb73 100644 --- a/.config/hypr/pyprland.toml +++ b/.config/hypr/pyprland.toml @@ -17,7 +17,7 @@ command = "kitty --class scratchpad yazi" lazy = true [scratchpads.gpt] -command = "kitty --class scratchpad tgpt -i" +command = "kitty --class scratchpad tgpt -m" lazy = true [scratchpads.dots] diff --git a/.config/nvim/lua/plugins/extras/coding/ai/gpt.lua b/.config/nvim/lua/plugins/extras/coding/ai/gpt.lua index efe609bd..71ea64fc 100644 --- a/.config/nvim/lua/plugins/extras/coding/ai/gpt.lua +++ b/.config/nvim/lua/plugins/extras/coding/ai/gpt.lua @@ -96,7 +96,7 @@ return { keys = { { "CT", - "FloatermNew --name=gpt --opener=edit --titleposition=center --width=0.85 --height=0.85 gpt", + "FloatermNew --name=gpt --opener=edit --titleposition=center --width=0.85 --height=0.85 gpt -m", desc = "Terminal GPT", }, },