# m-rust **Repository Path**: phigey/m-rust ## Basic Information - **Project Name**: m-rust - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-16 - **Last Updated**: 2025-07-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: tianchai ## README # VSCode 设置 字体美化: ``` "editor.fontFamily": "'JetBrains Mono',Consolas,'Courier New',monospace" ``` 与msys2中git.exe无法正常使用的问题修复 1. 在任意固定路径下编写git-wrap.bat 例如:C:/msys64 ```bat @echo off setlocal rem If you don't add path for msys2 into %PATH%, enable following line. rem set PATH=c:\msys64\usr\bin;%PATH% if "%1" equ "rev-parse" goto rev_parse git %* goto :eof :rev_parse for /f %%1 in ('git %*') do cygpath -w %%1 ``` 2. 在VSCode下设置git.path ``` "git.path": "C:/msys64/git-wrap.bat" ``` 3. clion msys2 Mingw Toolchains are not configured问题解决 ``` C:\msys64\mingw64\x86_64-w64-mingw32>mklink /D include ..\include ```