fix: incorrect bash shell in toggleterm
This commit is contained in:
parent
8c417d8e56
commit
70df72a6f5
@ -5,6 +5,12 @@
|
|||||||
-- vim.cmd('colorscheme melange')
|
-- vim.cmd('colorscheme melange')
|
||||||
vim.cmd("colorscheme catppuccin-mocha")
|
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
|
||||||
|
|
||||||
-- Set Leader
|
-- Set Leader
|
||||||
vim.keymap.set("n", "<Space>", "<Nop>", { silent = true })
|
vim.keymap.set("n", "<Space>", "<Nop>", { silent = true })
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user