在PowerShell里使用vim
阅读数:83 评论数:0
跳转到新版页面分类
应用软件
正文
一、安装gvim
1、下载
https://github.com/vim/vim-win32-installer/releases
如果下载慢,参考:http://1024s.top/blog/detail?blogId=42571
2、安装
基本就是next->next...。
二、设置PowerShell环境
1、以管理员身份运行powershell
2、运行运行本地创建的powershell脚本
Set-ExecutionPolicy RemoteSigned
3、创建powershell配置文件
new-item -path $profile -itemtype file -force
notepad $profile
set-alias vim "C:/Program Files (x86)/Vim/vim90/./vim.exe"
Function Edit-Profile
{
vim $profile
}
Function Edit-Vimrc
{
vim $HOME\_vimrc
}
相关推荐
一、概述
在windows中,cmd和powershell都是命令执行窗口,powershell从win7开始内置于windows系统中,可以看作是cmd的增强。
为了兼容unix/linux she
一、设置ip
netsh interface ip set address name=”Ethernet0″ static 10.1.2.220 255.255.255.0 10.1.2.1
根据自己
一、概述
在windows powershell中,可以在netsecurity模块中找到所有防火墙命令。
Get-Command -Module NetSecurity | Format-List
一、mstsc
Microsoft Terminal Service Client。
1、运行命令mstsc
win+r->输入"mstsc"
2、服务器远程连接配置
二、使用powershell远
一、概述
官方提供的windows安装mysql有两种:
1、msi安装包
2、zip包
下面以zip这种形式进行安装。
二、安装
1、切换到Program Files下
cd 'C:\Program
一、枚举当前系统中已存在共享
win32_share对象便是windows系统上共享的磁盘、打印机、系统默认共享以及其他共享设备。
PS C:\Windows\system32> Get-WmiObj
一、概述
PowerShell能够完成权限管理的操作:
1、获取文件和目录权限
2、为文件和目录添加权限
3、移除文件和目录权限
4、修改文件和目录的权限
5、启用禁用目录的继承属性。
二、权限类型
一、下载安装包
https://github.com/tporadowski/redis/releases
如果下载慢,参考:http://1024s.top/blog/detail?blogId=4
1、查看环境变量
$env:Path -split “;”
2、创建新的环境变量
$env:test_env_var = “test_env_var_value”
$env:path = $env:p
1、下载jdk
https://repo.huaweicloud.com/java/jdk/
2、执行安装,一直next,next...
3、配置环境变量
[Environment]::SetEnvi