Skip to content

Instantly share code, notes, and snippets.

View quanglochuynh's full-sized avatar
🎯
Focusing

Loc Q. Huynh quanglochuynh

🎯
Focusing
View GitHub Profile
@quanglochuynh
quanglochuynh / .p10k.zsh
Created December 6, 2024 15:21
Powerlevel10k config
# Generated by Powerlevel10k configuration wizard
'builtin' 'local' '-a' 'p10k_config_opts'
[[ ! -o 'aliases' ]] || p10k_config_opts+=('aliases')
[[ ! -o 'sh_glob' ]] || p10k_config_opts+=('sh_glob')
[[ ! -o 'no_brace_expand' ]] || p10k_config_opts+=('no_brace_expand')
'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand'
() {
emulate -L zsh -o extended_glob
@quanglochuynh
quanglochuynh / base-form.tsx
Created December 4, 2024 05:09
React Hook Form components
import { ReactNode } from 'react';
import {
Controller,
ControllerRenderProps,
FieldValues,
useController,
UseFormReturn,
} from 'react-hook-form';
import { twMerge } from 'tailwind-merge';