Skip to content

Instantly share code, notes, and snippets.

View seokbeomKim's full-sized avatar

김석범 (SukBeom Kim) seokbeomKim

View GitHub Profile
@seokbeomKim
seokbeomKim / compile_tmux.sh
Created September 28, 2021 02:01 — forked from tessus/compile_tmux.sh
compile tmux (static)
#!/bin/bash
TMUX_VERSION=2.3
NCURSES_VERSION=6.0
LIBEVENT_VERSION=2.0.22
BASEDIR=${HOME}/work/tmux-static
TMUXTARGET=${BASEDIR}/local
mkdir -p $TMUXTARGET
cd $BASEDIR
@seokbeomKim
seokbeomKim / .bash_profile
Last active September 25, 2023 15:12 — forked from chrisdone/gist:02e165a0004be33734ac2334f215380e
env-configuration
# This is personal bash_profile
export TERM=xterm-256color
function cd
{
if [ $# -eq 0 ]; then
pushd ~ > /dev/null
elif [ " $1" = " -" ]; then
pushd "$OLDPWD" > /dev/null
else