所以这里先搞定windows操作系统,这里使用官方的powershell作为shell终端,使用新版的windows terminal作为操作终端。 相关软件下载 windows terminal oh-my-posh 以上两个软件可以直接在微软商店下载,下载安装即可,不需要作任何配置。 关于oh-my-posh其实是zsh美化版本的oh-my-zsh,在linux上是zsh,在powershell中就是oh-my...
1. 下载Vim 首先我们进入Vim项目地址,下载Windows版本Vim:vim-win32-installer 我的Windows为x86_x64 2. 创建&解压 之后,我们在电脑的合适位置,创建一个目录,并解压Vim到其中: 效果 3. 环境变量 最好,我们设置环境变量即可: 设置环境变量 这个时候,我们使用CMD、Powershell和Windwos Terminal就可以使用Vim了: Win...
关于oh-my-posh其实是zsh美化版本的oh-my-zsh,在linux上是zsh,在powershell中就是oh-my-posh,这是用来美化终端命令显示的,提供很多内置的主题。比如我用的xtoys效果如下: 配置oh-my-posh主题 为了更好的兼容性,建议设置windows terminal字体为: 具体的设置方法可以在终端设置中选择对于的终端,再选择外观设置。 ...
这个时候,我们使用CMD、Powershell和Windwos Terminal就可以使用Vim了: Windows Terminal上使用vim Vim基础使用 首先,Vim的具体使用,可以参考官方文档:Vim help:https://vimhelp.org Vim基本分为三个基础模式: 命令模式(Command mode) 输入模式(Insert mode) 底线命令模式(Last line mode) > 1. 命令模式 在使用vim...
#windows(powerShell)安装md ~\vimfiles\autoload$uri='https://raw.githubusercontent,com/junegunn/vim-plug/master/plug.vim'(New-0biect Net.WebClient).DownloadFile(suri, SExecutionContext.SessionState.Path,GetUnresolvedProviderPathFromPSPath("\vimfiles\autoload\plug.vim" ...
0.powershell v7+ pwsh -v 官网msi 在 Windows 上安装 https://learn.microsoft.com/zh-cn/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.2#install-powershell-using-winget-recommended 默认安装到C:\Program Files\PowerShell\7。
C:\Windows\system32> @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe"-NoProfile -InputFormat None -ExecutionPolicy Bypass -Command"iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"&& SET"PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" ...
回到Windows PowerShell这边重启WSL: net stop LxssManager net start LxssManager 问题解决。 测试prettier 随便创建一个文件,比如说test.js,输入以下代码: functionaaa(){console.log("hello world");} 我们故意写成一行,等会儿让prettier来格式化。 在命令行输入指令格式化这段代码:npx prettier --write test.js ...
STEP 1: Open PowerShell as an Administrator. Open PowerShell by searching for “PowerShell” in the Start menu and selecting “Windows PowerShell” or “Windows PowerShell (x86)” in admin. STEP 2: InstallVim editor inPowerShell using Chocolatey ...
在windows下vim安装python-mod插件 vim对python的语法,格式等各方面支持不足,由python-mode插件补齐。 1、安装vim的插件系统 vim-plug,在win的powershell下运行: iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |`ni $HOME/vimfiles/autoload/plug.vim -Force...