修正 tmux 無法正常顯示 24-bit True color
在設定 Git diff 強化工具: delta 時,發現我的 terminal 顯示的顏色不正常。 我的 terminal 環境用 Alacritty + Tmux,網路上馬上找到跟我遇到一樣問題的同學: 24 bit/True color not working in tmux 2.3 · Issue #696 · tmux/tmux 我的環境如下: ...
在設定 Git diff 強化工具: delta 時,發現我的 terminal 顯示的顏色不正常。 我的 terminal 環境用 Alacritty + Tmux,網路上馬上找到跟我遇到一樣問題的同學: 24 bit/True color not working in tmux 2.3 · Issue #696 · tmux/tmux 我的環境如下: ...
被稱作 Linux 神器的工具 入門之後我也愛上它了,讓 terminal 變得非常的靈活 安裝 mac 1 $ brew install tmux ubuntu / debian apt 上裝的可能會太舊,直接裝 github 上最新 release 的 參考別人寫好的腳本: https://gist.github.com/P7h/91e14096374075f5316e 1 2 3 4 5 6 7 8 9 10 11 12 13 VERSION=2.6 sudo apt -y remove tmux sudo apt -y install wget tar libevent-dev libncurses-dev wget https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz tar xf tmux-${VERSION}.tar.gz rm -f tmux-${VERSION}.tar.gz cd tmux-${VERSION} ./configure make sudo make install cd - sudo rm -rf /usr/local/src/tmux-* sudo mv tmux-${VERSION} /usr/local/src tmux.conf 放上幾個我覺得實用的設定 ...