Files
my_nvim_config/lua/config/shell.lua

14 lines
476 B
Lua

local shell_path = os.getenv("SHELL") or ""
if (vim.fn.executable("nu") == 1) and shell_path:find("nu") then
vim.opt.sh = "nu"
vim.opt.shelltemp = false
vim.opt.shellredir = "out+err> %s"
vim.opt.shellcmdflag = "--stdin --no-newline -c"
vim.opt.shellxescape = ""
vim.opt.shellxquote = ""
vim.opt.shellquote = ""
vim.opt.shellpipe =
"| complete | update stderr { ansi strip } | tee { get stderr | save --force --raw %s } | into record"
end