Skip to content

Instantly share code, notes, and snippets.

@taywils
Last active May 21, 2024 04:53
Show Gist options
  • Save taywils/d07913f8743dac5b044f121b5983f2bb to your computer and use it in GitHub Desktop.
Save taywils/d07913f8743dac5b044f121b5983f2bb to your computer and use it in GitHub Desktop.
Tmux Configs
# better prefix key
set -g prefix C-a
bind C-a send-prefix
# better splitting
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
# less colourful status
set -g status-bg colour240
set -g status-fg white
# 256 colors support
set -g default-terminal "screen-256color"
# sane scrolling
set -g mouse on
# list of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
# TMUX plugin manager (keep at the bottom of tmux.conf)
# run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment