enc: update patch plugins

This commit is contained in:
Pojok Code 2025-08-02 20:19:38 +07:00
parent b341ee7246
commit 3b30870f04
6 changed files with 24 additions and 29 deletions

View file

@ -71,3 +71,11 @@ vim.api.nvim_create_autocmd("FileType", {
})
vim.opt.guicursor = "n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20"
local uname = vim.loop.os_uname()
if uname.sysname == "Windows_NT" then
vim.opt.shell = "pwsh"
vim.opt.shellcmdflag = "-NoLogo -NoProfile -ExecutionPolicy RemoteSigned -Command"
vim.opt.shellquote = ""
vim.opt.shellxquote = ""
end