From 56921235b315ec7a6637d2998ffe089bace9d8f8 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sat, 8 Nov 2025 11:28:35 -0500 Subject: [PATCH] fix: actually fix user shell --- modules/home/programs/terminal/nvim/config/lua/base.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/home/programs/terminal/nvim/config/lua/base.lua b/modules/home/programs/terminal/nvim/config/lua/base.lua index 6f7f591..1892f6e 100755 --- a/modules/home/programs/terminal/nvim/config/lua/base.lua +++ b/modules/home/programs/terminal/nvim/config/lua/base.lua @@ -6,10 +6,7 @@ vim.cmd("colorscheme catppuccin-mocha") -- Set User Shell -local nix_bash = vim.fn.expand("~/.nix-profile/bin/bash") -if vim.fn.executable(nix_bash) == 1 then - vim.o.shell = nix_bash -end +vim.o.shell = "/usr/bin/env bash" -- Set Leader vim.keymap.set("n", "", "", { silent = true })