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
proxy-groups: | |
- name: 🚀 默认 | |
type: select | |
proxies: [🇭🇰 香港自动, 🇯🇵 日本自动, 🇺🇸 美国自动, 🇺🇸 美国, 🇭🇰 香港, 🇯🇵 日本, 🇹🇼 台湾, 🇸🇬 新加坡, 🌐 全部, DIRECT] | |
- name: Ⓜ️ Microsoft | |
type: select | |
proxies: [DIRECT, 🚀 默认, 🇭🇰 香港, 🇯🇵 日本, 🇹🇼 台湾, 🇸🇬 新加坡, 🇺🇸 美国, 🌐 全部] | |
- name: 💬 OpenAI | |
type: select | |
proxies: [🇺🇸 美国] |
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
# ~/.config/fish/conf.d/devtools.fish | |
# kill the process of the specified port | |
function kp | |
set port $argv[1] | |
lsof -i:$port | awk "NR==2{print $2}" | xargs kill -9 | |
end | |
# git commands | |
alias main="git checkout main" |