Skip to content

Instantly share code, notes, and snippets.

View useraccessdenied's full-sized avatar

Kapil Singaria useraccessdenied

View GitHub Profile
@chadaustin
chadaustin / .tmux.conf
Last active October 12, 2024 19:34
my tmux config
# Detect the correct TERM value for new sessions.
# if-shell uses /bin/sh, so bashisms like [[ do not work.
if "[ $(tput colors) = 16777216 ]" {
set -g default-terminal "tmux-direct"
} {
if "[ $(tput colors) = 256 ]" {
set -g default-terminal "tmux-256color"
} {
set -g default-terminal "tmux"
}
@bebosudo
bebosudo / README.md
Created April 20, 2021 00:09
Workaround for MKL to use faster codepath on AMD CPUs