mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 20:21:57 +00:00
14 lines
476 B
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
|