在PowerShell中使用Vim
时间:2017-01-30 20:18:53
收藏:0
阅读:1600
1.需要去Vim官网下载并安装一个可运行于Win8系统的执行文件(ftp://ftp.vim.org/pub/vim/pc/gvim74.exe)。
2.设置PowerShell环境,使能“allow scripts to run”选项,步骤如下:
- 以管理员的身份运行PowerShell
- 执行Set-ExecutionPolicy RemoteSigned命令,在对话框中选择Y,如下
- PS C:\Windows\system32> Set-ExecutionPolicy RemoteSigned
- 执行策略更改
- 执行策略可帮助你防止执行不信任的脚本。更改执行策略可能会产生安全风险,如 http://go.microsoft.com/fwlink/?LinkID=135170
- 中的 about_Execution_Policies 帮助主题所述。是否要更改执行策略?
- [Y] 是(Y) [N] 否(N) [S] 挂起(S) [?] 帮助 (默认值为“Y”): Y
- PS C:\Windows\system32>
3.使用new-item命令,创建一个PowerShell的配置文件Profile。
- new-item -path $profile -itemtype file -force
4.编辑配置文件(notepad $profile),添加vim相关的alias。
- set-alias vim "C:/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后,就可以正常使用了
评论(0)