fix: actually fix user shell

This commit is contained in:
Evan Reichard 2025-11-08 11:28:35 -05:00
parent b111cf4197
commit 56921235b3

View File

@ -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", "<Space>", "<Nop>", { silent = true })