From 66c9dee7e1346414939669fbe514e3b02d638500 Mon Sep 17 00:00:00 2001 From: Somraj Saha <31373860+Jarmos-san@users.noreply.github.com> Date: Thu, 17 Aug 2023 14:19:55 +0530 Subject: [PATCH] update the Neovim settings to use ZSH for terminal commands --- dotfiles/.config/nvim/lua/options.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dotfiles/.config/nvim/lua/options.lua b/dotfiles/.config/nvim/lua/options.lua index 609e5657..3529304f 100644 --- a/dotfiles/.config/nvim/lua/options.lua +++ b/dotfiles/.config/nvim/lua/options.lua @@ -49,3 +49,4 @@ opt.iskeyword:append("-") -- Make Neovim recognise dash-seperated words as a sin opt.scrolloff = 6 -- Maintain a buffer of rows between the current row & the either ends of the window opt.relativenumber = true -- Display the row number relative to the up/down rows opt.signcolumn = "yes" -- Allow the sign column to show else it'll keep shifting later on +opt.shell = "zsh" -- Explicitly tell Neovim to use ZSH for terminal commands instead of relying on $SHELL