revert to powershell 5

This commit is contained in:
Daveanand Mannie
2024-09-09 15:10:39 -04:00
parent d30460f892
commit d797105520
2 changed files with 5 additions and 4 deletions

View File

@@ -1,7 +1,8 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
-- powershell so my shit compiles with zig when i install
vim.o.shell = "C:/Program Files/PowerShell/7/pwsh.exe"
vim.o.shell = "powershell"
vim.o.shellcmdflag = "-NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command [Console]::InputEncoding=[Console]::OutputEncoding=[System.Text.Encoding]::UTF8;"
vim.o.shellredir = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
vim.o.shellpipe = "2>&1 | Out-File -Encoding UTF8 %s; exit $LastExitCode"
vim.o.shellquote = ""