Skip to content

Commit

Permalink
fix(util): use vim.o.shell by default
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Apr 23, 2023
1 parent fe28f4b commit 0cbf466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function M.float_term(cmd, opts)
cmd = { cmd }
end
if #cmd == 0 then
cmd = { vim.env.SHELL or vim.o.shell }
cmd = { vim.o.shell }
end
opts = opts or {}
local float = M.float(opts)
Expand Down

0 comments on commit 0cbf466

Please sign in to comment.