Skip to content

Instantly share code, notes, and snippets.

View lawrencecchen's full-sized avatar
🐰

Lawrence Chen lawrencecchen

🐰
View GitHub Profile
@lawrencecchen
lawrencecchen / $.ts
Last active July 10, 2024 07:32
next-auth with remix
// app/routes/api/auth/$.ts
import NextAuth from "~/lib/next-auth/index.server";
export const { action, loader } = NextAuth({
providers: [
GoogleProvider({
clientId: env.GOOGLE_CLIENT_ID,
clientSecret: env.GOOGLE_CLIENT_SECRET,
}),
],
@lawrencecchen
lawrencecchen / vim-cheatsheet.md
Last active June 11, 2021 00:19 — forked from nerdalert/vim-cheatsheet.md
VIM Cheatsheet

VIM Cheatsheet

Cursor movement

h - move cursor left
j - move cursor down
k - move cursor up
l - move cursor right

w - jump forwards to the start of a word