Skip to content

Instantly share code, notes, and snippets.

View useraccessdenied's full-sized avatar

Kapil Singaria useraccessdenied

View GitHub Profile
@useraccessdenied
useraccessdenied / .tmux.conf
Created October 12, 2024 19:33 — forked from chadaustin/.tmux.conf
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"
}