All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
3.2 KiB

8 years ago
  1. set -g default-command "zsh"
  2. # tmux display things in 256 colors
  3. #set -g default-terminal "tmux-256color-italic"
  4. # enable terminal compability
  5. #set-option -ga terminal-overrides ",tmux-256color-italic:Tc"
  6. set -g history-limit 20000
  7. # automatically renumber tmux windows
  8. set -g renumber-windows on
  9. # unbind default prefix and set it to Ctrl+a
  10. unbind C-b
  11. set -g prefix C-a
  12. bind C-a send-prefix
  13. # for nested tmux sessions
  14. bind-key a send-prefix
  15. # Activity Monitoring
  16. setw -g monitor-activity off
  17. set -g visual-activity off
  18. # Rather than constraining window size to the maximum size of any client
  19. # connected to the *session*, constrain window size to the maximum size of any
  20. # client connected to *that window*. Much more reasonable.
  21. setw -g aggressive-resize on
  22. # make delay shorter
  23. set -sg escape-time 0
  24. # tile all windows
  25. unbind =
  26. bind = select-layout tiled
  27. # cycle through panes
  28. # unbind C-a
  29. # unbind o # this is the default key for cycling panes
  30. # bind ^A select-pane -t:.+
  31. set-option -g set-titles on
  32. set-option -g set-titles-string "#T - #W"
  33. # set-window-option -g automatic-rename on
  34. ######################
  35. #### Key Bindings ####
  36. ######################
  37. # reload config file
  38. bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
  39. # quickly open a new window
  40. bind N new-window -c "#{pane_current_path}"
  41. # split window and fix path for tmux 1.9
  42. bind | split-window -h -c "#{pane_current_path}"
  43. bind - split-window -v -c "#{pane_current_path}"
  44. # synchronize all panes in a window
  45. bind y setw synchronize-panes
  46. # pane movement shortcuts
  47. bind h select-pane -L
  48. bind j select-pane -D
  49. bind k select-pane -U
  50. bind l select-pane -R
  51. bind -r C-h select-window -t :-
  52. bind -r C-l select-window -t :+
  53. # Resize pane shortcuts
  54. bind -r H resize-pane -L 10
  55. bind -r J resize-pane -D 10
  56. bind -r K resize-pane -U 10
  57. bind -r L resize-pane -R 10
  58. # enable mouse support for switching panes/windows
  59. setw -g mouse on
  60. # set-option -g -q mouse on
  61. bind-key -T root PPage if-shell -F "#{alternate_on}" "send-keys PPage" "copy-mode -e; send-keys PPage"
  62. bind-key -t vi-copy PPage page-up
  63. bind-key -t vi-copy NPage page-down
  64. bind -T root WheelUpPane if-shell -F -t = "#{alternate_on}" "select-pane -t =; send-keys -M" "select-pane -t =; copy-mode -e; send-keys -M"
  65. bind -T root WheelDownPane if-shell -F -t = "#{alternate_on}" "select-pane -t =; send-keys -M" "select-pane -t =; send-keys -M"
  66. bind-key -t vi-copy WheelUpPane halfpage-up
  67. bind-key -t vi-copy WheelDownPane halfpage-down
  68. # maximizing and restoring windows
  69. unbind Up
  70. bind Up new-window -d -n fullscreen \; swap-pane -s fullscreen.1 \; select-window -t fullscreen
  71. unbind Down
  72. bind Down last-window \; swap-pane -s fullscreen.1 \; kill-window -t fullscreen
  73. # set vi mode for copy mode
  74. setw -g mode-keys vi
  75. # more settings to make copy-mode more vim-like
  76. unbind [
  77. bind Escape copy-mode
  78. unbind p
  79. bind p paste-buffer
  80. bind -t vi-copy 'v' begin-selection
  81. bind -t vi-copy 'y' copy-selection
  82. # Buffers to/from Mac clipboard, yay tmux book from pragprog
  83. #bind C-c run "tmux save-buffer - | reattach-to-user-namespace pbcopy"
  84. #bind C-v run "tmux set-buffer $(reattach-to-user-namespace pbpaste); tmux paste-buffer"
  85. ##############################
  86. ### Color & Style Settings ###
  87. ##############################
  88. source ~/.dotfiles/tmux/theme.sh