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
@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
@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
import { isBrowser } from '@lib/isBrowser';
import { useState } from 'react';
interface CookieOptions {
days?: number;
path?: string;
domain?: string;
SameSite?: 'None' | 'Lax' | 'Strict';
Secure?: boolean;
[colors.primary]
background = "#1e1e2e"
foreground = "#cdd6f4"
dim_foreground = "#7f849c"
bright_foreground = "#cdd6f4"
[colors.cursor]
text = "#1e1e2e"
cursor = "#f5e0dc"