Skip to content

Instantly share code, notes, and snippets.

@goldcoders
goldcoders / .tmux.conf
Last active March 31, 2022 12:39
tmux alacritty combo
# INSTALL
# cp tmuxconf ~/.tmux.conf
#
# Set prefix key to c-a instead of default c-b
# Tmux Overried Keybinding on Alacritty
# Vim Workflow Goodness
unbind C-b
set -g prefix C-a
bind C-a send-prefix
@dceddia
dceddia / symbolicate.rb
Created June 26, 2021 18:58
Symbolicate a macOS crash report from Sentry
#!/usr/bin/env ruby
# colorization without needing a gem
class String
def colorize(color_code)
"\e[#{color_code}m#{self}\e[0m"
end
def red
colorize(31)