Advertisement
cirrus

.tmux.conf

Jan 26th, 2013
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. # Copyright 2012 Cirrus Minor. All rights reserved.
  2. #
  3. # Redistribution and use in source and binary forms, with or without modification, are
  4. # permitted provided that the following conditions are met:
  5. #
  6. # 1. Redistributions of source code must retain the above copyright notice, this list of
  7. # conditions and the following disclaimer.
  8. # 2. Redistributions in binary form must reproduce the above copyright notice, this list
  9. # of conditions and the following disclaimer in the documentation and/or other materials
  10. # provided with the distribution.
  11. #
  12. # THIS SOFTWARE IS PROVIDED BY ARCHEYDEVIL ''AS IS'' AND ANY EXPRESS OR IMPLIED
  13. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  14. # FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ARCHEYDEVIL OR
  15. # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  16. # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  17. # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  18. # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  19. # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  20. # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  21. #
  22. # The views and conclusions contained in the software and documentation are those of the
  23. # authors and should not be interpreted as representing official policies, either expressed
  24. # or implied, of Cirrus Minor.
  25.  
  26. ################
  27. ## .tmux.conf ##
  28. #unbind C-b
  29. set -g prefix C-a
  30. #bind / command-prompt -p "man: " "split-window 'exec man %%'"
  31.  
  32. # generalized startup stuff
  33. set -g default-command zsh
  34. set -g default-terminal screen-256color
  35. #setw -g aggressive-resize on
  36. #setw -g monitor-activity on
  37. set -g automatic-rename on
  38. #set-window-option -g utf8
  39. set -g set-remain-on-exit on
  40. set -g visual-activity on
  41. set -u set-remain-on-exit on
  42. # mouse
  43. set -g mouse-select-pane on
  44. set -g mouse-resize-pane on
  45. set -g mouse-select-window on
  46.  
  47. # Statusbar properties
  48. set -g display-time 3000
  49. set -g status-bg default
  50. set -g status-fg cyan
  51. set -g window-status-current-fg yellow
  52.  
  53. #set-option set-titles on
  54. set -s escape-time 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement