🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf(options): set shell to `/bin/sh` on unix

robin c979a40d bf591949

+4 -1
+4 -1
config/lua/ivy/config/options.lua
··· 108 108 -- indent blank line imporvments 109 109 vim.opt.list = true 110 110 111 - vim.opt.shell = os.getenv("SHELL") or "/bin/sh" 111 + vim.o.shell = os.getenv("SHELL") or "/bin/sh" 112 + if vim.fn.has("unix") == 1 then 113 + vim.o.shell = "/bin/sh" 114 + end 112 115 113 116 -- disable swap & backup, and configure undo files 114 117 vim.opt.swapfile = false