加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

power shell添加vim

发布时间:2020-12-15 23:13:51 所属栏目:安全 来源:网络整理
导读:1、去Vim官网下载适合操作系统的可执行文件 地址:https://www.vim.org/download.php#pc 2、找到Vim文件夹中的vimrc文件进行修改,增加下面这4行。 set encoding=utf-8set termencoding=utf-8set fileencoding=utf-8set fileencodings=ucs-bom,utf-8,chinese

1、去Vim官网下载适合操作系统的可执行文件

地址:https://www.vim.org/download.php#pc

2、找到Vim文件夹中的vimrc文件进行修改,增加下面这4行。

set encoding=utf-8
set termencoding=utf-8
set fileencoding=utf-8
set fileencodings=ucs-bom,utf-8,chinese,cp936


3、在C:WindowsSystem32WindowsPowerShellv1.0目录下新建profile.ps1文件,复制下面的代码到profile.ps1文件中。

# There‘s usually much more than this in my profile!
$SCRIPTPATH = "C:Program Files (x86)Vim"
$VIMPATH = $SCRIPTPATH + "vim80vim.exe"

Set-Alias vi $VIMPATH
Set-Alias vim $VIMPATH

# for editing your PowerShell profile
Function Edit-Profile
{
vim $profile
}

# for editing your Vim settings
Function Edit-Vimrc
{
vim $home_vimrc
}

  


4、重启Shell,执行Set-ExecutionPolicy RemoteSigned命令修改模式就可以了。

Set-ExecutionPolicy RemoteSigned

  

It‘s all!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读