As configured in my dotfiles.
start new:
tmux
start new with session name:
// Place your key bindings in this file to override the defaults | |
[ | |
/// ============================================ | |
/// Common Keybindings | |
/// ============================================ | |
{ | |
"key": "shift+cmd+t", | |
"command": "-workbench.action.reopenClosedEditor" | |
}, | |
{ |
# electron | |
ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/ |
# global config | |
# init config | |
init-author-name = blackcater | |
init-author-email = [email protected] | |
init-author-url = https://blackcater.com | |
# git tag message | |
message = "chore: version bump to v%s" |
/** | |
* unicode letters used for parsing html tags, component names and property paths. | |
* using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname | |
* skipping \u10000-\uEFFFF due to it freezing up PhantomJS | |
*/ | |
export const unicodeRegExp = /a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/ |
木兰宽松许可证, 第2版 | |
木兰宽松许可证, 第2版 | |
2020年1月 http://license.coscl.org.cn/MulanPSL2 | |
您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第2版(“本许可证”)的如下条款的约束: | |
0. 定义 | |
“软件”是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 |
As configured in my dotfiles.
start new:
tmux
start new with session name:
Vue.js 13 hrs 44 mins ████████▏░░░░░░░░░░░░ 38.7% | |
JavaScript 11 hrs 53 mins ███████░░░░░░░░░░░░░░ 33.5% | |
JSON 3 hrs 43 mins ██▏░░░░░░░░░░░░░░░░░░ 10.5% | |
C++ 2 hrs 25 mins █▍░░░░░░░░░░░░░░░░░░░ 6.8% | |
TypeScript 50 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.4% |
# Please install bass | |
# > omf install bass | |
function nvm | |
bass source /usr/local/opt/nvm/nvm.sh --no-use ';' nvm $argv | |
end |
minikube start --image-mirror-country="cn" --registry-mirror="http://f1361db2.m.daocloud.io" |
// When color definition differs for dark and light variant, | |
// it gets @if ed depending on $variant | |
// Base colors | |
$base_color: if($variant =='light', #ffffff, #242424); | |
$text_color: if($variant == 'light', #363636, #dadada); | |
$bg_color: if($variant =='light', #f5f5f5, #333333); | |
$fg_color: if($variant =='light', #242424, #dedede); | |
$alt_fg_color: if($variant=='light', #383838, #3d3d3d); |