Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. et -g default-terminal "screen-256color" # Use 256 colors
  2. set -g status-utf8 on # Enable utf-8
  3. set -g history-limit 100000 # Scrollback buffer number of lines
  4.  
  5. # Start window indexing at one instead of zero
  6. set -g base-index 1
  7.  
  8. # Set the prefix key and some key bindings to match GNU Screen
  9. set -g prefix C
  10. bind-key C-a last-window
  11.  
  12. # Key bindings for horizontal and vertical panes
  13. unbind %
  14. bind h split-window -h
  15. bind v split-window -v
  16.  
  17. # Enable window titles
  18. #set -g set-titles on
  19.  
  20. # Window title string (uses statusbar variables)
  21. set -g set-titles-string '#T'
  22.  
  23. # Status bar with load and time
  24. set -g status-bg '#4e4e4e'
  25. set -g status-fg '#ffffff'
  26. set -g status-left ' '
  27. set -g status-right '#[bg=#bbbbbb]#[fg=#000000]#(cut -d " " -f -3 /proc/loadavg) #[bg=#4e4e4e]#[fg=#fff>
  28. set -g window-status-format '#I #W'
  29. set -g window-status-current-format ' #I #W '
  30. setw -g window-status-current-bg '#55ff55'
  31. setw -g window-status-current-fg '#000000'
  32.  
  33. # Pane border colors
  34. set -g pane-active-border-fg '#bbbbbb'
  35. set -g pane-border-fg '#555555'
  36.  
  37. # Bind to reload config
  38. bind r source-file ~/.tmux.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement