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
| # for clash | |
| git config --global http.proxy http://127.0.0.1:7890 | |
| # reset | |
| git config --global --unset http.proxy |
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
| # file path: ~/.config/fish/config.fish | |
| # NVM 自动切换配置 | |
| # 查找.nvmrc文件的函数 | |
| function nvm_find_nvmrc | |
| set -l path (pwd) | |
| while test "$path" != "/" | |
| if test -f "$path/.nvmrc" | |
| echo "$path/.nvmrc" | |
| return 0 |
OlderNewer