Skip to content

Instantly share code, notes, and snippets.

View loiclaudet's full-sized avatar
🐤
kokopi.app

lodz loiclaudet

🐤
kokopi.app
View GitHub Profile
@loiclaudet
loiclaudet / tmux-cheatsheet.md
Created February 8, 2026 01:41
tmux cheatsheet — with agent team pane management

tmux Cheatsheet

Prefix key: Ctrl-b (denoted as C-b below)


Sessions

Command Description
@loiclaudet
loiclaudet / config
Last active February 3, 2026 01:07
Ghostty terminal config
# Copy on select (like Warp)
copy-on-select = clipboard
# Quality of life
mouse-hide-while-typing = true
confirm-close-surface = false
quit-after-last-window-closed = true
window-padding-x = 4
window-padding-y = 4
function memoize(fn: (...args: any) => any) {
const cache = {};
return function(..._args) {
const key = JSON.stringify(arguments);
if (cache[key]) {
console.log(cache);
return cache[key];
}
const value = fn.apply(null, arguments);
cache[key] = value;