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
| { | |
| "buffer_font_family": "Cascadia Code NF", | |
| "buffer_font_features": { | |
| "ss01": true, | |
| "ss02": true, | |
| "ss03": true, | |
| "ss19": true, | |
| "ss20": true, | |
| "calt": false | |
| }, |
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
| # Beets config | |
| # Album art manually saved to music folders from: https://covers.musichoarders.xyz | |
| directory: R:/media/music | |
| library: ~/iCloudDrive/beets/library.db | |
| plugins: | |
| ## Autotagger Extensions | |
| # https://beets.readthedocs.io/en/stable/plugins/discogs.html | |
| - discogs |
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
| import type { Prisma } from "@prisma/client" | |
| import { redis } from "../redis" | |
| type CacheMiddlewareOptions = { | |
| model: Prisma.ModelName | |
| action: Prisma.PrismaAction | |
| keys?: string[] | |
| defaultValues?: Record<string, unknown> | |
| ttlInSeconds: number | |
| } |