tmux-sensible
tmux-sensible copied to clipboard
basic tmux settings everyone can agree on
I'm not sure how to handle this tbh… I've been wrestling with this issue here: https://github.com/fish-shell/fish-shell/issues/5699 And after @jtomaszewski's comment, I was able to confirm that when I commented out...
Repro: ``` $ tmux $ echo $TERM screen $ tmux -V tmux 2.8 $ tmux show-option -sv default-terminal screen $ grep default ~/.tmux.conf $ $ tmux set-option -s default-terminal screen-256color...
Hey, I just found this: ``` # Start windows and panes at 1, not 0 set -g base-index 1 setw -g pane-base-index 1 ``` Source: https://unix.stackexchange.com/a/35932 Could this be made...
Call me an outcast, but I never got onboard with the C-a/C-b prefix. My prefix is `` ` `` (backtick), which I have been using without issues for over 6...
Error message reads: unknown-option: default-terminal
I've seen this being used around and consider it a sensible default, what you think? ``` # Number windows and panes starting at 1 so that we can jump to...
The only way I have been able to enable true color support in tmux is to do the trick listed here: https://github.com/tmux/tmux/issues/34#issuecomment-241527745 Is there any way to wisely overwrite this?
Update the numbering when a window is killed.
C-a is last-window, a is send-prefix. This is consistent with screen bindings; C-a C-a toggles to last window, and C-a a sends the command character. last-window is usually also needed...
I have the following in my .tmux.conf to switch windows with alt-h and alt-l: ``` bind -n M-h previous-window bind -n M-l next-window ``` and sometimes with `escape-time` set to...