Simplify your tmux life with TOML and JSON configuration. Less fuss, more coding.
๐ก Work in progressโlike that side project you swear you'll finish someday.
Run the following command in your terminal:
curl -sSL https://raw.githubusercontent.com/bettervim/tmux-ease/main/scripts/install.sh | bash
- Create a
~/tmux.toml
file (or.json
if you want):
touch ~/tmux.toml
- Paste the following TOML config into this file:
prefix = ["ctrl", "b"]
[options]
history-limit = 10000
set-titles = "on"
set-titles-string = "ฮป"
[[binds]]
key = ["h"]
command = "select-pane -L"
[[binds]]
key = ["L"]
command = "resize-pane -R 15"
Feel free to modify these options.
- Paste the following command at the bottom of you
tmux.conf
:
run-shell "tmux-ease ~/tmux.toml ~/tmux-ease.conf"
source-file ~/tmux-ease.conf
- Reload your tmux, and there you have it!
curl -sSL https://raw.githubusercontent.com/bettervim/tmux-ease/main/scripts/uninstall.sh | bash
MIT