From 73bb97ed1d8fb47ae2c5e27bf85d9667b77a3073 Mon Sep 17 00:00:00 2001 From: Ducky SSH User Date: Sun, 7 Dec 2025 03:57:01 +0000 Subject: [PATCH] Change the default shell for ToggleTerm back to bash --- lua/custom/plugins/toggleterm.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/toggleterm.lua b/lua/custom/plugins/toggleterm.lua index bac3bdc..f9ce1e2 100644 --- a/lua/custom/plugins/toggleterm.lua +++ b/lua/custom/plugins/toggleterm.lua @@ -3,6 +3,7 @@ return { 'akinsho/toggleterm.nvim', -- [[ cmd = { "toggleterm", "termexec" }, ]] opts = { + -- close_on_exit = false, highlights = { normal = { link = 'normal' }, normalnc = { link = 'normalnc' }, @@ -24,7 +25,7 @@ return { return vim.o.columns * 0.4 end end, - shell = 'pwsh', + shell = 'bash', open_mapping = [[]], shading_factor = 2, direction = 'float',