Skip to content

Instantly share code, notes, and snippets.

@protortyp
Created September 29, 2020 15:39
Show Gist options
  • Select an option

  • Save protortyp/a92401146ecca4680683dedd65cdd313 to your computer and use it in GitHub Desktop.

Select an option

Save protortyp/a92401146ecca4680683dedd65cdd313 to your computer and use it in GitHub Desktop.
tmux config
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