Created
September 29, 2020 15:39
-
-
Save protortyp/a92401146ecca4680683dedd65cdd313 to your computer and use it in GitHub Desktop.
tmux config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setw -g window-status-current-format "#T(#I:#W#F)" | |
| setw -g window-status-format "#T(#I:#W#F)" | |
| # reload | |
| bind r source-file ~/.tmux.conf | |
| # move windows | |
| bind -n C-S-Left swap-window -t -1 | |
| bind -n C-S-Right swap-window -t +1 | |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % | |
| # enable mouse | |
| set -g mouse on | |
| # theme file | |
| source-file "${HOME}/.tmux-themepack/powerline/default/cyan.tmuxtheme" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment