From 4fa8591142b0ebd5b4ed62e80e51363c58f16df5 Mon Sep 17 00:00:00 2001 From: Valeriy Filippov Date: Thu, 2 Apr 2026 18:14:08 +0300 Subject: [PATCH] nvim: update used shell --- nvim/lua/config/options.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index 8174526..34c1c20 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua @@ -43,3 +43,6 @@ opt.splitbelow = true -- split horizontal window to the bottom -- turn off swapfile opt.swapfile = false + +-- set shell to zsh +opt.shell = "/bin/zsh -i"