This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## 下载设置 ## | |
| ## ------------ | |
| # 断点续传 | |
| continue=true | |
| # 最大同时下载任务数, 运行时可修改, 默认:5 | |
| max-concurrent-downloads=5 | |
| # 单个任务最大线程数, 添加时可指定, 默认:5 | |
| split=16 | |
| # 最小文件分片大小, 添加时可指定, 取值范围1M -1024M, 默认:20M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;= @echo off | |
| ;= rem Call DOSKEY and use this file as the macrofile | |
| ;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0% | |
| ;= rem In batch mode, jump to the end of the file | |
| ;= goto:eof | |
| ;= Add aliases below here | |
| e.=explorer . | |
| gl=git log --oneline --all --graph --decorate $* | |
| ls=ls --show-control-chars -F --color $* | |
| pwd=cd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "git.ignoreMissingGitWarning": true, | |
| "workbench.colorTheme": "Atom One Dark", | |
| "editor.fontFamily": "Consolas, 'Microsoft Yahei'", | |
| "files.exclude": { | |
| "node_modules": true | |
| }, | |
| "window.title": "${dirty}${activeEditorShort}${separator}${activeEditorMedium}${separator}${appName}", | |
| "editor.wordWrap": "bounded", | |
| "terminal.integrated.shell.windows": "C:\\windows\\System32\\cmd.exe", |