Advertisement
Guest User

ivan's tmux.conf

a guest
Sep 14th, 2014
1,335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.04 KB | None | 0 0
  1. # ~/.tmux.conf
  2.  
  3. # Set the default input delay to improve Vim performance
  4. set -sg escape-time 1
  5.  
  6. # tell tmux to use 256 colour terminal
  7. set -g default-terminal "screen-256color"
  8.  
  9.  
  10. # KEYS
  11. set -g mode-keys vi
  12. set -g status-keys vi
  13.  
  14. # Reload .tmux.conf with "r"
  15. bind r source-file ~/.tmux.conf \; display "Reloaded!"
  16.  
  17. # Select panes with vi-style movements
  18. bind h select-pane -L
  19. bind j select-pane -D
  20. bind k select-pane -U
  21. bind l select-pane -R
  22.  
  23. set-option -g history-limit 10000
  24.  
  25. # APPEARANCE
  26. # default statusbar colors
  27. set -g status-fg white
  28. set -g status-bg default
  29. set -g status-attr default
  30.  
  31. # default window title colors
  32. setw -g window-status-fg white
  33. setw -g window-status-bg default
  34. setw -g window-status-attr dim
  35.  
  36. # active window title colors
  37. setw -g window-status-current-fg cyan
  38. setw -g window-status-current-bg default
  39. #setw -g window-status-current-attr bright
  40. setw -g window-status-current-attr underscore
  41.  
  42. # command/message line colors
  43. set -g message-fg white
  44. set -g message-bg black
  45. set -g message-attr bright
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement