Skip to content

Instantly share code, notes, and snippets.

@meisinger
Last active April 22, 2022 22:29
Show Gist options
  • Save meisinger/6ae7bc10ae1c59da98c1ceebcb88437b to your computer and use it in GitHub Desktop.
Save meisinger/6ae7bc10ae1c59da98c1ceebcb88437b to your computer and use it in GitHub Desktop.
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"
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