Last active
April 22, 2022 22:29
-
-
Save meisinger/6ae7bc10ae1c59da98c1ceebcb88437b to your computer and use it in GitHub Desktop.
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
set -g default-terminal xterm-256color | |
set -g history-limit 10000 | |
set-option -g prefix C-a | |
unbind C-b | |
bind-key C-a send-prefix | |
bind r source-file ~/.tmux.conf \; display "Reloaded!" | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R | |
bind H resize-pane -L 5 | |
bind J resize-pane -D 5 | |
bind K resize-pane -U 5 | |
bind L resize-pane -R 5 | |
set-option -g base-index 1 | |
setw -g pane-base-index 1 | |
set-option -g status-keys vi | |
setw -g mode-keys vi | |
setw -g monitor-activity on | |
set -g visual-activity on | |
set -g focus-events on | |
bind C-l send-keys 'C-l' | |
bind C-k clear-history | |
source-file "${HOME}/.tmux-themepack/powerline/default/orange.tmuxtheme" |
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
name: DEV | |
root: ~/dev/projects | |
windows: | |
- editor: vim | |
- main: #empty | |
- git: git status | |
- zsh: #empty | |
- dev: | |
root: ~/dev | |
- docker: | |
root: ~/docker | |
panes: | |
- docker ps -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment