diff --git a/lua/config/shell.lua b/lua/config/shell.lua new file mode 100644 index 0000000..7d6b4d7 --- /dev/null +++ b/lua/config/shell.lua @@ -0,0 +1,13 @@ +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