Guest User

Untitled

a guest
May 27th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. #******************************************************************************#
  2. # #
  3. # ::: :::::::: #
  4. # .tmux.conf :+: :+: :+: #
  5. # +:+ +:+ +:+ #
  6. # By: marvin <marvin@42.fr> +#+ +:+ +#+ #
  7. # +#+#+#+#+#+ +#+ #
  8. # Created: 2018/05/06 16:59:00 by marvin #+# #+# #
  9. # Updated: 2018/05/23 10:09:34 by marvin ### ########.fr #
  10. # #
  11. #******************************************************************************#
  12. set -g status-bg black
  13. set -g status-fg white
  14. #set -g status-utf8 on #
  15. #set -g utf8 on
  16. #set -gw mode-keys emacs
  17.  
  18. # set -g mode-mouse on
  19. # set -g mouse-resize-pane on
  20. # set -g mouse-select-pane on
  21. # set -g mouse-select-window on
  22.  
  23. # Window list
  24.  
  25. set -g status-bg black
  26. set -g status-fg white
  27. set -g status-left-length 50
  28. set -g status-left "#[fg=blue](#[fg=white]#H#[fg=blue]) "
  29. set -g status-right-length 50
  30. set -g status-right "#[fg=blue] (#[fg=magenta]%H:%M#[fg=blue])"
  31. set -g status-justify centre
  32.  
  33. set-window-option -g window-status-current-attr bold
  34. set-window-option -g window-status-current-fg red
  35.  
  36. set -g message-attr bold
  37. set -g message-fg black
  38. set -g message-bg yellow
  39.  
  40. set -g default-shell /bin/zsh
  41. set -g default-command /bin/zsh
  42. setw -g automatic-rename on
  43. set -g set-titles on
  44. set -g set-titles-string '[#S] #T'
  45. set -g repeat-time 100
  46. setw -g clock-mode-colour red
  47. setw -g clock-mode-style 12
  48. setw -g alternate-screen on
  49.  
  50. set -g pane-border-fg black
  51. set -g pane-active-border-fg red
  52. set -g display-panes-colour white
  53. set -g display-panes-active-colour red
  54. set -g display-panes-time 1000
  55.  
  56. bind P paste-buffer
  57. bind-key -T copy-mode-vi v send-keys -X begin-selection
  58. bind-key -T copy-mode-vi y send-keys -X copy-selection
  59. bind-key -T copy-mode-vi r send-keys -X rectangle-toggle
  60.  
  61. set -g mouse on
  62. set-option -s set-clipboard off
  63.  
  64. bind / command-prompt "split-window 'exec man %%'"
Add Comment
Please, Sign In to add comment