Skip to content

Commit 0cbf466

Browse files
committed
fix(util): use vim.o.shell by default
1 parent fe28f4b commit 0cbf466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/util.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function M.float_term(cmd, opts)
101101
cmd = { cmd }
102102
end
103103
if #cmd == 0 then
104-
cmd = { vim.env.SHELL or vim.o.shell }
104+
cmd = { vim.o.shell }
105105
end
106106
opts = opts or {}
107107
local float = M.float(opts)

0 commit comments

Comments
 (0)