Guy
Guy
have you figured it out? same question
I wanted the background to be #ffffff instead of dark grey, figured it out now though
I switched over to [this theme](https://github.com/joshdick/onedark.vim) where in the autoload/onedark.vim I changed black to #ffffff and the term value to 0. It did not work without the cterm value change....
Just checked it out and looks super cool! Just wondering, would this be a plugin or... what section would it be under do you think?
Hi Quincy! Well spotted! Will work on implementing blocking for knowledge panels and carousels too!
Simple [post](https://developers.cloudflare.com/workers/databases/connect-to-postgres/) for native TCP connection via `pg` library - works as expected.
@shinokada I know, that's what my issue was :) Is that by design? Why not include an on:click?
The same build works on all prisma versions
@SevInf After using [create-svelte-app](https://kit.svelte.dev/docs/creating-a-project): /src/lib/server/db.ts: ``` import { PrismaClient } from '@prisma/client'; export default new PrismaClient(); ``` /src/hooks.server.ts: ``` import type { Handle } from "@sveltejs/kit"; import db from '$lib/server/db'...