Skip to content

Instantly share code, notes, and snippets.

View Codennnn's full-sized avatar

LeoKu Codennnn

View GitHub Profile
@Codennnn
Codennnn / type.ts
Last active March 19, 2022 11:41
只对某些属性设置为可选
type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>
// usage:
interface A {
requireX: string
requireY: string
requireZ: string
}
@Codennnn
Codennnn / scroll-bar.css
Last active April 24, 2022 08:09
浏览器滚动条样式
/** ========== 滚动条样式 ========== */
::-webkit-scrollbar {
width: 12px !important;
height: 12px !important;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(116 120 141 / 0.22) !important;
@Codennnn
Codennnn / Tutorial.md
Last active April 15, 2022 07:48
Windows Terminal 使用教程

美化

安装主题

执行以下命令安装posh-git和oh-my-posh两个模块,遇到提示选y确认即可

Install-Module posh-git -Scope CurrentUser 
Install-Module oh-my-posh -Scope CurrentUser

新增配置文件