Skip to content

Instantly share code, notes, and snippets.

View esau-morais's full-sized avatar
⌨️
Coding

Esaú Morais esau-morais

⌨️
Coding
View GitHub Profile
env:
TERM: xterm-256color
font:
size: 12
normal:
family: "CaskaydiaCove Nerd Font"
style: Regular
bold:
style: Bold
import { isBrowser } from '@lib/isBrowser';
import { useState } from 'react';
interface CookieOptions {
days?: number;
path?: string;
domain?: string;
SameSite?: 'None' | 'Lax' | 'Strict';
Secure?: boolean;
@esau-morais
esau-morais / .zshrc
Last active November 11, 2023 21:57
oh-my-zsh config file
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
@esau-morais
esau-morais / .tmux.conf
Last active December 21, 2023 11:30
My TMUX config file
set -g default-shell /bin/zsh
set -g default-terminal 'tmux-256color'
set -ag terminal-overrides ',xterm-256color:RGB'
setw -g mouse on
set -g escape-time 10
setw -g mode-keys vi
unbind C-b
set-option -g prefix ^
bind-key ^ send-prefix