|||
vim官网下载gvim74.exe,安装;
我安装路径D:Program FilesVimvim74
然后,设置PowerShell环境,使能“allow scripts to run”选项,步骤如下:
以管理员的身份运行PowerShell
执行Set-ExecutionPolicy RemoteSigned命令,在对话框中选择Y,如下
接下来,使用new-item命令,创建一个PowerShell的配置文件Profile。
new-item -path $profile -itemtype file -force
最后,编辑配置文件(notepad $profile),添加vim相关的alias。
set-alias vim "D:/Program Files/Vim/vim74/./vim.exe"
# To edit the Powershell Profile
# (Not that I'll remember this)
Function Edit-Profile
{
vim $profile
}
# To edit Vim settings
Function Edit-Vimrc
{
vim $HOME_vimrc
}
重启PowerShell后,就可以正常使用了,如下(后续可以按照正常的方式,配置VIM,这里就不多说了)。
感谢蜗窝科技:http://www.wowotech.net/soft/vim_in_powershell.html
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-21 01:44
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社